-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "depp-installer",
"version": "0.0.11",
"description": " A fast unused and duplicate dependency checker ",
"repository": {
"type": "git",
"url": "git+https://github.com/CryogenicPlanet/depp.git"
},
"keywords": [
"unused",
"dependency",
"checker",
"duplicate"
],
"author": "Rahul Tarak",
"license": "MIT",
"bugs": {
"url": "https://github.com/CryogenicPlanet/depp/issues"
},
"homepage": "https://github.com/CryogenicPlanet/depp#readme",
"scripts": {
"postinstall": "node dist/postinstall.js install",
"preuninstall": "node dist/postinstall.js uninstall",
"build": "esbuild scripts/postinstall.ts --outdir=dist/ --platform=node --format=cjs",
"prepare": "pnpm build"
},
"goBinary": {
"name": "depp",
"path": "./bin"
},
"files": [
"dist/postinstall.js"
],
"main": "scripts/postinstall.js",
"dependencies": {
"axios": "^0.24.0",
"decompress": "^4.2.1",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"@types/decompress": "^4.2.4",
"@types/mkdirp": "^1.0.2",
"esbuild": "^0.13.12"
}
}