-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 976 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 976 Bytes
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
{
"name": "cors-proxy",
"version": "1.0.0",
"description": "proxy back end for simple API usage",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint_d . --ext .js || true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johncip/cors-proxy.git"
},
"author": "John Cipriano <johnmikecip@gmail.com> (https://github.com/johncip)",
"license": "ISC",
"bugs": {
"url": "https://github.com/johncip/cors-proxy/issues"
},
"homepage": "https://github.com/johncip/cors-proxy#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint_d": "^7.3.0"
},
"dependencies": {
"heroku-logger": "^0.3.3",
"http-proxy": "^1.17.0"
}
}