-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "koa-luscax",
"version": "1.0.0",
"description": "Web application security middleware for koa.",
"keywords": [
"lusca",
"koa-lusca",
"koa-luscax"
],
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"scripts": {
"test": "mocha --exit test/*.js",
"test-coverage": "nyc mocha --exit -- test/*.js",
"test-coveralls": "nyc --reporter=text-lcov mocha --exit -- test/*.js | coveralls",
"jshint": "jshint lib/ test/ index.js",
"autod": "autod -w --prefix '~'",
"cnpm": "npm install --registry=https://registry.npm.taobao.org",
"contributors": "contributors -f plain -o AUTHORS"
},
"homepage": "https://github.com/mamboer/koa-luscax",
"repository": {
"type": "git",
"url": "https://github.com/mamboer/koa-luscax.git"
},
"author": {
"name": "mamboer",
"email": "mamboer@gmail.com"
},
"engines": {
"node": ">=10"
},
"engineStrict": true,
"dependencies": {
"koa-compose": "~4.1.0"
},
"devDependencies": {
"autod": "^3.1.0",
"contributors": "^0.5.1",
"coveralls": "^3.0.3",
"jshint": "^2.10.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-generic-session": "^2.0.1",
"koa-router": "^7.4.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
}
}