forked from koajs/cors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
42
43
44
45
46
47
48
49
{
"name": "@koa/cors",
"version": "3.0.0",
"description": "Cross-Origin Resource Sharing(CORS) for koa",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "NODE_ENV=test mocha --check-leaks -R spec -t 5000 test/*.test.js",
"test-cov": "NODE_ENV=test istanbul cover _mocha -- --check-leaks -t 5000 test/*.test.js",
"ci": "npm run lint && npm run test-cov",
"lint": "eslint index.js test",
"autod": "autod -w --prefix '^'"
},
"dependencies": {
"vary": "^1.1.2"
},
"devDependencies": {
"autod": "*",
"eslint": "^5.15.1",
"eslint-config-egg": "^7.1.0",
"istanbul": "*",
"koa": "^2.5.1",
"mocha": "3",
"supertest": "^3.1.0"
},
"homepage": "https://github.com/koajs/cors",
"repository": {
"type": "git",
"url": "git://github.com/koajs/cors.git"
},
"bugs": {
"url": "https://github.com/koajs/cors/issues"
},
"keywords": [
"cors",
"koa-cors",
"Cross-Origin Resource Sharing",
"@koa/cors",
"koa",
"koajs"
],
"engines": {
"node": ">= 8.0.0"
},
"author": "fengmk2 <[email protected]> (http://fengmk2.com)",
"license": "MIT"
}