forked from eggjs/security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "egg-security",
"version": "2.5.0",
"description": "security plugin in egg framework",
"eggPlugin": {
"name": "security",
"optionalDependencies": [
"session"
]
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"security"
],
"dependencies": {
"csrf": "^3.0.6",
"debug": "^4.1.1",
"delegates": "^1.0.0",
"egg-path-matching": "^1.0.0",
"escape-html": "^1.0.3",
"extend": "^3.0.1",
"ip": "^1.1.5",
"koa-compose": "^4.0.0",
"matcher": "^1.1.1",
"methods": "^1.1.2",
"nanoid": "^2.0.1",
"platform": "^1.3.4",
"statuses": "^1.5.0",
"type-is": "^1.6.15",
"xss": "^1.0.3"
},
"devDependencies": {
"autod": "^3.0.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"egg": "^2.16.0",
"egg-bin": "^4.3.5",
"egg-ci": "^1.8.0",
"egg-mock": "^3.13.1",
"egg-view-nunjucks": "^2.1.4",
"eslint": "^5.15.1",
"eslint-config-egg": "^7.1.0",
"git-contributor": "^1.0.10",
"mz-modules": "^2.1.0",
"pedding": "^1.1.0",
"rimraf": "^2.6.2",
"should": "^13.1.3",
"should-http": "^0.1.1",
"spy": "^1.0.0",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov",
"autod": "autod",
"contributor": "git-contributor"
},
"ci": {
"version": "8, 10, 11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-security.git"
},
"files": [
"agent.js",
"app",
"lib",
"config",
"app.js",
"index.js"
],
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-security#readme",
"author": "jtyjty99999",
"license": "MIT"
}