forked from gr2m/CORS-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "corsproxy",
"description": "standalone CORS proxy",
"main": "./index.js",
"author": {
"name": "Gregor Martynus",
"email": "[email protected]"
},
"dependencies": {
"ejs": "^2.3.3",
"file-system": "^2.2.2",
"good": "^6.3.0",
"good-console": "^5.0.3",
"h2o2": "^4.0.1",
"hapi": "^9.0.2",
"hapi-cors-headers": "^1.0.0",
"http-proxy": "~1.11",
"inert": "^3.0.1",
"vision": "^3.0.0"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"colors": "^1.1.2",
"mocha": "^2.2.5",
"request": "^2.60.0",
"sauce-connect-launcher": "^0.12.0",
"semantic-release": "^4.0.3",
"standard": "^5.1.0",
"sv-selenium": "^0.2.6",
"wd": "^0.3.12"
},
"bin": {
"corsproxy": "./bin/corsproxy"
},
"scripts": {
"install_selenium_and_chromedriver": "install_chromedriver && install_selenium",
"kill_selenium": "kill_selenium",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "./bin/corsproxy",
"start_app": "./bin/start-app",
"start_selenium_with_chromedriver": "start_selenium_with_chromedriver",
"test": "standard && ./bin/test-background",
"test:mocha": "mocha test/test-*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gr2m/CORS-Proxy"
},
"license": "MIT"
}