-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.21 KB
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": "generate-npm-install",
"version": "3.2.1",
"main": "index.js",
"bin": {
"generate-npm-install": "index.js",
"generate-yarn-install": "yarn.js",
"generate-pnpm-install": "pnpm.js"
},
"author": "Hoàng Văn Khải <hvksmr1996@gmail.com>",
"preferGlobal": true,
"devDependencies": {
"@types/js-yaml": "^3.11.1",
"jest": "^22.4.3",
"js-yaml": "^3.11.0",
"standard": "^11.0.1",
"x-iterable": "^6.0.1"
},
"engines": {
"node": ">= 9.0.0"
},
"scripts": {
"remake-package-json": "node sh/remake-package-json",
"clean": "bash 'sh/clean.sh'",
"fix": "bash 'sh/fix.sh'",
"test": "bash 'sh/test.sh'"
},
"description": "Generate npm install commands base on package.json",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksxnodeapps/generate-npm-install.git"
},
"keywords": [
"generate-shell-commands",
"npm-install",
"packages"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ksxnodeapps/generate-npm-install/issues"
},
"homepage": "https://github.com/ksxnodeapps/generate-npm-install#readme",
"standard": {
"env": {
"jest": true
}
}
}