forked from expressjs/cors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "cors",
"version": "2.8.1",
"author": "Troy Goode <[email protected]> (https://github.com/troygoode/)",
"description": "middleware for dynamically or statically enabling CORS in express/connect applications",
"keywords": ["cors", "express", "connect", "middleware"],
"homepage": "https://github.com/expressjs/cors/",
"repository": {
"type": "git",
"url": "git://github.com/expressjs/cors.git"
},
"contributors": [
{
"name": "Troy Goode",
"email": "[email protected]",
"web": "https://github.com/troygoode/"
}
],
"license": "MIT",
"bugs": {"url": "https://github.com/expressjs/cors/issues"},
"main": "./lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"vary": "^1"
},
"devDependencies": {
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.12.4",
"eslint": "^0.21.2",
"express": "^4.12.4",
"mocha": "^2.2.5",
"should": "^6.0.3",
"supertest": "^1.0.1"
},
"scripts": {
"test": "npm run lint && ./node_modules/mocha/bin/mocha",
"lint": "./node_modules/eslint/bin/eslint.js lib test"
}
}