-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "npmdi",
"version": "1.0.1",
"description": "A CLI tool to install dependencies in deep directories",
"main": "dist/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"bin": {
"npmdi": "./dist/index.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"premake": "yarn build",
"postinstall": "node dist/lib/commands/postinstall.js"
},
"files": [
"dist"
],
"keywords": [
"node_modules",
"deep",
"install",
"installer",
"deep-installer",
"modules",
"npm-deep-installer",
"npm-deep"
],
"author": "Fernando Dorantes <fernando@dorant.es>",
"license": "MIT",
"dependencies": {
"@supercharge/promise-pool": "^2.4.0",
"chalk": "^4.1.2",
"commander": "^10.0.0",
"glob": "^7.1.7",
"node-emoji": "^1.11.0",
"rimraf": "^4.1.2"
},
"devDependencies": {
"@types/node": "^18.13.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"bugs": {
"url": "https://github.com/fdorantesm/npmdi/issues"
}
}