forked from Rob--W/cors-anywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 919 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
37
38
39
{
"name": "cors-anywhere",
"version": "0.2.5",
"description": "CORS Anywhere is a reverse proxy which adds CORS headers to the proxied request. Request URL is taken from the path",
"license": "MIT",
"author": "Rob Wu <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Rob--W/cors-anywhere.git"
},
"bugs": {
"url": "https://github.com/Rob--W/cors-anywhere/issues/",
"email": "[email protected]"
},
"keywords": [
"cors",
"cross-domain",
"http-proxy",
"proxy",
"heroku"
],
"main": "./lib/cors-anywhere.js",
"dependencies": {
"http-proxy": "1.11.1"
},
"devDependencies": {
"mocha": "~2.2.4",
"nock": "~1.9.0",
"supertest": "~0.15.0",
"webpack": "^1.12.13"
},
"scripts": {
"test": "./node_modules/.bin/mocha ./test/test*.js --reporter spec"
},
"engines": {
"node": ">=0.6.6",
"npm": ">=1.1.0"
}
}