forked from expressjs/cors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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.6.0",
"author": "Troy Goode <troygoode@gmail.com> (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/troygoode/node-cors/",
"repository": {
"type": "git",
"url": "git://github.com/troygoode/node-cors.git"
},
"contributors": [
{
"name": "Troy Goode",
"email": "troygoode@gmail.com",
"web": "https://github.com/troygoode/"
}
],
"license": "MIT",
"bugs": {"url": "https://github.com/troygoode/node-cors/issues"},
"main": "./lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"vary": "^1"
},
"devDependencies": {
"basic-auth-connect": "^1",
"body-parser": "^1.4.3",
"express": "^4",
"lint": "^1.1.2",
"mocha": "^1.18.2",
"should": "^3.3.1",
"supertest": "^0.12"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"lint": "./node_modules/lint/bin/node-lint lib test"
}
}