-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
46 lines (46 loc) · 1 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
{
"name": "node-tgz-downloader",
"description": "Downloads all of the node_modules based on a package-lock.json file",
"authors": "Meir017",
"version": "3.15.0",
"scripts": {
"test": "jasmine test/**/*spec.js --reporter=jasmine-console-reporter"
},
"keywords": [
"tgz",
"npm",
"package.json",
"package-lock",
"registry"
],
"dependencies": {
"colors": "^1.3.0",
"commander": "^2.16.0",
"https-proxy-agent": "^5.0.1",
"mkdirp": "^0.5.1",
"p-limit": "^4.0.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"semver": "^7.5.2",
"tar": "^4.4.6"
},
"main": "lib/downloader.js",
"bin": {
"download-tgz": "bin/download-tgz"
},
"files": [
"lib",
"bin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Meir017/node-tgz-downloader.git"
},
"devDependencies": {
"@types/jasmine": "^2.8.9",
"jasmine": "^3.2.0",
"jasmine-console-reporter": "^3.1.0",
"rimraf": "^2.6.2"
}
}