-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1015 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "egg-cors",
"version": "3.0.1",
"description": "cors plugin for egg",
"eggPlugin": {
"name": "cors"
},
"files": [
"app",
"config",
"app.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git@github.com:eggjs/egg-cors.git"
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"cors"
],
"dependencies": {
"@koa/cors": "^5.0.0"
},
"devDependencies": {
"egg": "^3.17.5",
"egg-bin": "^6.5.2",
"egg-mock": "^5.10.9",
"egg-security": "^3.1.0",
"eslint": "^8.55.0",
"eslint-config-egg": "12",
"git-contributor": "^2.1.5"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"contributor": "git-contributor",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"bug": {
"url": "https://github.com/eggjs/egg/issues"
},
"author": "dead_horse"
}