forked from Tabcorp/restify-cors-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 869 Bytes
/
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
{
"name": "restify-cors-middleware",
"version": "1.1.0",
"author": "Tabcorp Digital Technology Team",
"license": "MIT",
"description": "CORS middleware with full W3C spec support",
"keywords": [
"restify",
"cors",
"cross origin",
"headers"
],
"repository": {
"type": "git",
"url": "https://github.com/TabDigital/restify-cors-middleware.git"
},
"bugs": {
"url": "https://github.com/TabDigital/restify-cors-middleware/issues"
},
"main": "src/index.js",
"scripts": {
"test": "require-lint && standard && mocha"
},
"peerDependencies": {
"restify": "2.6.x - 6.x.x"
},
"devDependencies": {
"mocha": "~3.4.1",
"require-lint": "^1.1.2",
"restify": "~4.3.0",
"should": "~11.2.1",
"standard": "^10.0.2",
"supertest": "~3.0.0"
},
"dependencies": {
"assert-plus": "^1.0.0"
}
}