-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
42
43
{
"name": "ynn-plugin-cors",
"version": "0.0.0",
"description": "Cors Origin Resources Sharing plugin for Ynn",
"main": "src/index.js",
"scripts": {
"test": "jest --forceExit",
"tw" : "npm run test-watch",
"test-watch" : "jest --watch",
"test-cov" : "jest --coverage --runInBand --forceExit --detectOpenHandles",
"lint" : "eslint src --cache --ignore-path .eslintignore",
"precommit-msg" : "echo 'Pre-commit checks...' && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ynnjs/ynn-plugin-cors.git"
},
"keywords": [
"ynn",
"plugin",
"cors",
"koa",
"cross-origin"
],
"author": "LvChengbin <lvchengbin59@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ynnjs/ynn-plugin-cors/issues"
},
"homepage": "https://github.com/ynnjs/ynn-plugin-cors#readme",
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"pre-commit": "^1.2.2",
"supertest": "^4.0.2",
"ynn": "0.0.49"
},
"dependencies": {
"@lvchengbin/is": "0.0.27",
"vary": "^1.1.2"
}
}