-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
36 lines (36 loc) · 836 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
29
30
31
32
33
34
35
36
{
"name": "cors-proxy",
"version": "0.0.1",
"description": "A CORS proxy.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "node_modules/mocha/bin/mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imjacobclark/cors-proxy.git"
},
"keywords": [
"cors",
"proxy"
],
"author": "Jacob Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/imjacobclark/cors-proxy/issues"
},
"homepage": "https://github.com/imjacobclark/cors-proxy#readme",
"dependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"compression": "^1.6.1",
"cors": "^2.8.5",
"express": "^4.13.4",
"mocha": "^7.1.2",
"nock": "^12.0.3",
"rel-to-abs": "^0.1.0",
"request-promise": "^2.0.0",
"supertest": "^4.0.2"
}
}