forked from expressjs/cors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "cors"
, "version": "1.0.1"
, "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/"
}
]
, "licenses": [
{"type": "MIT", "url": "http://www.opensource.org/licenses/mit-license.php"}
]
, "bugs": {"url": "https://github.com/troygoode/troygoode/node-cors/issues"}
, "main": "./lib/index.js"
, "engines": {
"node": ">=0.8.0"
}
, "dependencies": {}
, "devDependencies": {
"express": "*"
, "lint": "*"
, "mocha": "*"
, "should": "*"
, "supertest": "*"
}
, "scripts": {
"test": "./node_modules/mocha/bin/mocha"
, "lint": "./node_modules/lint/bin/node-lint lib test"
}
}