-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@bokovza/package-downloader",
"version": "1.1.2",
"description": "NPM Package Downloader by Bar Yochai Bokovza",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": "https://github.com/bar-boko/package-downloader",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"prepack": "npm run clean && npm run build"
},
"bin": {
"packageDownloader": "dist/index.js"
},
"keywords": [
"npm",
"whiten",
"packages",
"package",
"package downloader",
"downloader",
"resolve",
"pacote",
"download"
],
"author": "Bar Yochai Bokovza",
"license": "Apache-2.0",
"dependencies": {
"@types/async": "^3.2.12",
"async": "^3.2.3",
"bottleneck": "^2.19.5",
"commander": "^8.3.0",
"deepmerge-json": "^1.2.0",
"download": "^8.0.0",
"p-limit": "^4.0.0",
"pacote": "^12.0.2",
"ramda": "^0.27.1",
"rimraf": "^3.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/download": "^8.0.0",
"@types/pacote": "^11.1.2",
"@types/ramda": "^0.27.62",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}