-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 998 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 998 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
35
36
37
38
39
40
41
42
43
{
"name": "cors-proxy",
"version": "0.0.1",
"description": "CORS proxy with AWS Lambda",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NYULibraries/cors-proxy.git"
},
"keywords": [
"cors",
"lambda",
"proxy"
],
"author": "Elliott Grieco",
"license": "ISC",
"bugs": {
"url": "https://github.com/NYULibraries/cors-proxy/issues"
},
"homepage": "https://github.com/NYULibraries/cors-proxy#readme",
"scripts": {
"test-and-report": "yarn test && yarn coverage",
"coverage": "nyc report --reporter=text-lcov | yarn coveralls",
"test": "yarn nyc jasmine"
},
"devDependencies": {
"coveralls": "^3.0.3",
"jasmine": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"nyc": "^14.1.1"
},
"dependencies": {
"axios": "^0.21.2",
"kind-of": "^6.0.3"
},
"optionalDependencies": {
"eslint": "^5.16.0"
},
"resolutions": {
"node-fetch": "^2.6.1",
"kind-of": "^6.0.3"
}
}