-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "koa-lusca",
"version": "2.2.0",
"description": "Web application security middleware for koa.",
"main": "index.js",
"files": [
"index.js", "lib/"
],
"scripts": {
"test": "mocha --harmony -t 5000 test/*.js",
"test-cov": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -t 5000 test/*.js",
"test-travis": "node --harmony node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 5000 test/*.js",
"jshint": "jshint lib/ test/ index.js",
"autod": "autod -w --prefix '~'",
"cnpm": "npm install --registry=https://registry.npmmirror.com",
"contributors": "contributors -f plain -o AUTHORS"
},
"homepage": "https://github.com/koajs/koa-lusca",
"repository": {
"type": "git",
"url": "https://github.com/koajs/koa-lusca.git"
},
"author": {
"name": "fengmk2",
"email": "[email protected]"
},
"licenses": "MIT",
"engines": {
"node": ">=0.11.x"
},
"engineStrict": true,
"dependencies": {
"koa-compose": "~2.3.0"
},
"devDependencies": {
"autod": "*",
"contributors": "*",
"data-driven": "~1.1.0",
"istanbul-harmony": "*",
"jshint": "*",
"koa": "~0.17.0",
"koa-middlewares": "~2.1.0",
"koa-router": "~4.0.1",
"mocha": "*",
"pedding": "~1.0.0",
"supertest": "~0.15.0"
}
}