-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "npm-leech",
"version": "1.3.0",
"description": "Utility to download dependent NPM tarballs for offline use.",
"main": "src/index.js",
"bin": "src/index.js",
"license": "MIT",
"author": {
"name": "Lars Wilhelmsen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:larsw/npm-leech.git"
},
"scripts": {
"start": "node src/index.js"
},
"dependencies": {
"@cyclonedx/cyclonedx-npm": "^1.0.0-beta.5",
"@types/archiver": "^3.1.0",
"archiver": "^5.0.0",
"async": "^3.2.0",
"axios": "^0.21.1",
"electron": "^10.0.0",
"es6-set": "^0.1.5",
"immer": "^9.0.0",
"minimist": "^1.2.5",
"sbom": "^0.0.0",
"unfetch": "^4.1.0",
"yup": "^0.32.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/validator": "^10.11.3",
"@types/yup": "^0.26.37"
}
}