forked from kleingtm/npm-pack-all
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "npm-pack-all",
"version": "1.12.7",
"description": "A simple utility to package all node_modules dependencies when running `npm pack` (not devDependencies)",
"keywords": [
"npm",
"pack",
"yarn",
"package",
"artifact",
"dependencies",
"pack all dependencies",
"bundle"
],
"repository": "https://github.com/kleingtm/npm-pack-all.git",
"author": "Tom Kleingers <[email protected]>",
"license": "MIT",
"main": "index.js",
"bin": "index.js",
"dependencies": {
"lodash": "^4.17.11",
"minimist": "^1.2.5",
"shelljs": "^0.8.3"
},
"devDependencies": {
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"prettier": "^1.18.2"
},
"scripts": {
"compile": "npx nexe index.js --output bin/npm-pack-all",
"release": "npm config set loglevel verbose && npm publish --registry=https://registry.npmjs.org",
"lint": "eslint . --fix",
"husky": "yarn lint && yarn test",
"test": "jest",
"deploy": "pkg . --options expose-gc --out-path bin ",
"env": "printenv"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"engines": {
"node": ">=6.4.0"
},
"bundledDependencies": [
"lodash",
"minimist",
"shelljs"
]
}