-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.68 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
{
"name": "sprout",
"description": "Simple project templating & skeletons",
"version": "1.2.1",
"author": "Carrot Creative <[email protected]>",
"bugs": "https://github.com/carrot/sprout/issues",
"contributors": [
"Noah Portes Chaikin <[email protected]>",
"Jeff Escalante <[email protected]>",
"Kyle MacDonald <[email protected]>"
],
"dependencies": {
"argparse": "^1.0.2",
"ejs": "^2.3.1",
"isbinaryfile": "^3.0.0",
"joi": "^10.0.0",
"js-yaml": "^3.4.5",
"lodash": "^4.12.0",
"minimatch": "^3.0.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"readdirp": "^2.0.0",
"rimraf": "^2.5.2",
"underscore.string": "^3.1.1",
"when": "^3.7.7",
"which": "^1.2.8"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"errno": "^0.1.2",
"istanbul": "^0.4.1",
"jsdoc": "^3.3.1",
"mocha": "^2.5.3",
"mockery": "^2.0.0",
"snazzy": "^6.0.0",
"standard": "^9.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/carrot/sprout",
"keywords": [
"configuration",
"new",
"project",
"templating"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/carrot/sprout"
},
"scripts": {
"coverage": "istanbul cover _mocha --report html -- -R spec && open coverage/lcov-report/index.html",
"lint": "standard --verbose | snazzy",
"precommit": "npm run lint -s",
"pretest": "npm run lint -s",
"test": "mocha"
},
"standard": {
"ignore": [
"/test/*"
]
}
}