-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
49 lines (49 loc) · 1006 Bytes
/
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
{
"name": "slush",
"description": "The streaming scaffolding system - Gulp as a replacement for Yeoman",
"version": "1.1.1",
"homepage": "http://slushjs.github.io",
"repository": "slushjs/slush",
"author": "Joakim Bengtson <[email protected]>",
"preferGlobal": true,
"keywords": [
"scaffold",
"stream",
"project",
"init",
"tool",
"yeoman",
"gulp"
],
"files": [
"lib",
"bin"
],
"bin": {
"slush": "./bin/slush.js"
},
"dependencies": {
"archy": "^0.0.2",
"chalk": "^0.4.0",
"fancy-log": "^1.3.2",
"glob": "~4.0.0",
"liftoff": "~0.10.0",
"minimist": "~0.1.0",
"pretty-hrtime": "^0.2.0"
},
"devDependencies": {
"mocha": "^1.17.0",
"should": "^3.1.0",
"jshint": "^2.4.1",
"gulp-jshint": "^1.4.0",
"gulp": "~3.6.2"
},
"scripts": {
"test": "node gulpfile.js && NODE_ENV=test mocha --reporter spec"
},
"engineStrict": true,
"engines": {
"node": ">= 0.9"
},
"license": "MIT"
}