forked from runk/npm-proxy-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "npm-proxy-cache",
"version": "0.5.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "^2.8.1",
"hash-files": "1.1.1",
"lodash": "4.16.2",
"log4js": "^0.6.26",
"mkdirp": "^0.5.1",
"request": "^2.61.0"
},
"description": "HTTP/HTTPS caching proxy for work with `npm` utility / registry",
"main": "index.js",
"devDependencies": {
"mocha": "latest",
"rimraf": "latest"
},
"scripts": {
"test": "mocha -R spec --recursive",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"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"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/runk/npm-proxy-cache/issues"
},
"engines": {
"node": ">=0.10"
}
}