-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "generator-choo",
"version": "1.0.6",
"description": "Scaffold a choo app",
"license": "MIT",
"repository": "trainyard/generator-choo",
"contributors": [
{
"name": "Juan Soto",
"email": "[email protected]",
"url": "http://juansoto.me"
},
{
"name": "Matt McFarland",
"email": "[email protected]",
"url": "https://github.com/MattMcFarland"
},
{
"name": "Hemanth.HM",
"email": "[email protected]",
"url": "https://h3manth.com"
},
{
"name": "Ilya Radchenko",
"email": "[email protected]",
"url": "http://burstcreations.com/"
},
{
"name": "Ronn Ross",
"email": "[email protected]",
"url": "https://github.com/ronnross"
},
{
"name": "Yerko Palma",
"email": "[email protected]",
"url": "https://github.com/YerkoPalma"
}
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"prepublish": "npm test",
"deploy": "surge -p dist || npm i surge -D && npm run deploy",
"lint": "standard --verbose | snazzy",
"clean": "rm -rf temp",
"pretest": "npm run clean && npm run lint",
"test": "NODE_ENV=test tape --require ./tests/**/*.js | tap-summary"
},
"files": [
"generators",
"license",
"readme.md"
],
"keywords": [
"yeoman-generator",
"yeoman",
"boilerplate",
"template",
"scaffold",
"choo"
],
"dependencies": {
"escodegen": "^1.8.0",
"esprima": "^2.7.2",
"lodash.kebabcase": "^4.0.1",
"yeoman-generator": "^0.24.1"
},
"devDependencies": {
"deep-equal": "^1.0.1",
"eslint": "^3.1.1",
"fs.extra": "^1.3.2",
"snazzy": "^4.0.0",
"standard": "^7.1.2",
"tap-summary": "^3.0.1",
"tape": "^4.6.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.4.0"
},
"standard": {
"ignore": [
"scripts",
"test.js"
]
}
}