forked from ElemeFE/cooking
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1021 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
50
{
"private": true,
"scripts": {
"test": "xo && nyc ava",
"lint": "xo",
"watch:test": "ava -wv",
"report": "nyc report --reporter=html",
"postinstall": "make bootstrap",
"pub": "lerna publish"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"xo/no-process-exit": 0,
"xo/filename-case": 0
},
"ignores": [
"example/**"
]
},
"ava": {
"files": [
"test/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElemeFE/cooking.git"
},
"author": "qingwei-li<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ElemeFE/cooking/issues"
},
"homepage": "https://github.com/ElemeFE/cooking#readme",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"ava": "^0.15.1",
"coveralls": "^2.11.9",
"lerna": "2.0.0-beta.26",
"nyc": "^6.4.2",
"webpack": "^2.1.0-beta.21",
"xo": "^0.15.0"
},
"dependencies": {}
}