-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.77 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
66
67
68
69
70
71
72
{
"name": "npm-safe-install",
"version": "1.1.0",
"description": "Install packages without breaking your links",
"main": "./out/cli.js",
"scripts": {
"build": "webpack",
"test": "mocha-webpack --webpack-config webpack.config.test.js \"spec/**/*.spec.js\"",
"test-ci": "mocha-webpack",
"cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/UD-UD/npm-safe-install.git"
},
"nyc": {
"include": [
"app/src/**/*.js"
],
"instrument": false,
"sourceMap": false
},
"bin": {
"npm-safe-install": "./out/cli.js",
"nsi": "./out/cli.js"
},
"keys": [
"npm",
"safe-install",
"link",
"npm-link",
"nsi",
"npm-safe-install"
],
"author": "Ujjal Kumar Dutta <duttaujjal143@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.4",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"chalk": "2.3.2",
"commander": "2.15.1",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.10.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.0.1",
"fs": "0.0.1-security",
"fs-extra": "5.0.0",
"istanbul-instrumenter-loader": "3.0.1",
"lodash": "4.17.5",
"mocha": "5.0.5",
"mocha-webpack": "2.0.0-beta.0",
"nyc": "11.6.0",
"webpack": "4.5.0",
"webpack-cli": "2.0.14",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"babel": "^6.23.0",
"cross-env": "^5.1.4",
"glob": "^7.1.2",
"shelljs": "^0.8.1"
},
"engines": {
"node": ">=8.4.0"
}
}