-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "upupming-mirror",
"version": "0.0.2",
"description": "Node.js mirror Google, Wikipedia, GitHub etc. with simple configuration.",
"scripts": {
"dev": "nodemon --inspect index.js",
"test": "standard && mocha",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- --timeout 100000",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"patch": "npm version patch && npm publish && git push origin master && git push origin --tags",
"minor": "npm version minor && npm publish && git push origin master && git push origin --tags",
"major": "npm version major && npm publish && git push origin master && git push origin --tags",
"deploy": "node index.js"
},
"standard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/upupming/Mirror.git"
},
"keywords": [
"GFW",
"proxy",
"reverse proxy",
"http proxy"
],
"author": "upupming",
"license": "MIT",
"bugs": {
"url": "https://github.com/upupming/Mirror/issues"
},
"homepage": "https://github.com/upupming/Mirror#readme",
"devDependencies": {
"ncp": "^2.0.0",
"nodemon": "*",
"rimraf": "^2.6.3",
"which": "^1.3.1"
}
}