forked from saojs/sao-nm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 869 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
51
{
"name": "sao-nm",
"version": "1.1.1",
"description": "Scaffolding out a node module.",
"repository": {
"url": "saojs/sao-nm",
"type": "git"
},
"scripts": {
"test": "jest && npm run lint",
"lint": "xo *.js test/*.js"
},
"jest": {
"modulePathIgnorePatterns": [
"/template/"
]
},
"author": "EGOIST <0x142857@gmail.com>",
"license": "MIT",
"files": [
"saofile.js",
"template",
"generators/",
"lib"
],
"keywords": [
"sao",
"generator",
"sao-generator",
"nm",
"node-modules",
"npm",
"package"
],
"xo": {
"extends": "rem",
"envs": [
"jest"
]
},
"dependencies": {
"camelcase": "^4.0.0",
"superb": "^1.3.0"
},
"devDependencies": {
"eslint-config-rem": "^4.0.0",
"jest": "^22.4.3",
"sao": "^1.0.0",
"xo": "^0.20.3"
}
}