forked from tracker1/node-no-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 940 Bytes
/
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
{
"name": "no-proxy",
"version": "1.0.3",
"description": "Determine if a url should bypass a proxy based on NO_PROXY environment variable.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tracker1/node-no-proxy.git"
},
"author": "Michael J. Ryan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tracker1/node-no-proxy/issues"
},
"homepage": "https://github.com/tracker1/node-no-proxy#readme",
"dependencies": {
"wildcard": "^1.1.2"
},
"optionalDependencies": {
"url-parse": "^1.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"publish-major": "npm version major && git push origin master && git push --tags",
"publish-minor": "npm version minor && git push origin master && git push --tags",
"publish-patch": "npm version patch && git push origin master && git push --tags"
}
}