-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
54 lines (54 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
53
54
{
"name": "npm-proxy-cache",
"version": "2.2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "^2.17.1",
"log4js": "^3.0.6",
"mkdirp": "^0.5.1",
"mv": "^2.1.1",
"request": "^2.88.0"
},
"description": "HTTP/HTTPS caching proxy for work with `npm` utility / registry",
"main": "index.js",
"devDependencies": {
"eslint": "^5.4.0",
"github-publish-release": "^5.0.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2"
},
"scripts": {
"lint": "scripts/lint",
"release": "scripts/release",
"test": "scripts/test"
},
"repository": {
"type": "git",
"url": "[email protected]:runk/npm-proxy-cache.git"
},
"bin": {
"npm-proxy-cache": "./bin/npm-proxy-cache"
},
"keywords": [
"npm",
"proxy",
"registry",
"cache",
"proxy server",
"forward proxy"
],
"author": "Dmitry Shirokov <[email protected]>",
"contributors": [
"@someuser77",
"@FrankZZ"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/runk/npm-proxy-cache/issues"
},
"engines": {
"node": ">=6"
}
}