-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.42 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
{
"name": "sugar-cli",
"version": "1.5.2",
"description": "Simple yet powerful tool for prototyping development",
"main": "server/index.js",
"bin": {
"sugar": "bin/sugar.js"
},
"scripts": {
"lint": "eslint bin sugar server helper",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/creeperyang/sugar-cli.git"
},
"keywords": [
"sugar",
"prototyping",
"prototype",
"workflow",
"cli",
"server",
"static"
],
"author": "creeperyang",
"license": "MIT",
"bugs": {
"url": "https://github.com/creeperyang/sugar-cli/issues"
},
"homepage": "https://github.com/creeperyang/sugar-cli#readme",
"dependencies": {
"chokidar": "^1.6.0",
"colors": "^1.1.2",
"commander": "^2.11.0",
"glob-all": "^3.0.3",
"koa": "^2.0.0",
"koa-livereload": "^0.2.0",
"koa-logger": "^2.0.0",
"koa-static": "^3.0.0",
"minimatch": "^3.0.3",
"mkdirp": "^0.5.1",
"node-fetch": "^1.6.0",
"rimraf": "^2.5.2",
"sugar-template": "^2.0.1",
"tiny-lr": "^0.2.1",
"universal-css-processor": "^0.3.4",
"yamljs": "^0.2.7"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"ava": "^0.17.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1"
},
"ava": {
"files": [
"test/*.spec.js"
]
}
}