-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.12 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
{
"name": "better-npm-install",
"main": "lib/index.js",
"version": "1.3.0",
"scripts": {
"debug": "nodemon --exec babel-node src/index.js app /Users/project",
"debug-b": "lib/index.js app /home/project",
"build": "npx babel src --out-dir lib",
"test": "xo --fix"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"xo": "^0.18.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"child-process-promise": "^2.2.1",
"child_process": "^1.0.2",
"fs-extra": "^5.0.0",
"glob": "^7.1.3",
"glob-promise": "^3.4.0",
"npm-programmatic": "0.0.9",
"ora": "^1.4.0",
"recursive-readdir": "^2.2.2"
},
"url": "https://github.com/imkimchi/ni",
"email": "[email protected]",
"bin": {
"ni": "lib/index.js"
},
"xo": {
"ignores": [
"src/npm.js"
],
"semicolon": false,
"space": 2,
"rules": {
"curly": 0,
"no-await-in-loop": 0,
"no-prototype-builtins": 0
}
}
}