-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "@altonotch/koa-protect",
"version": "1.0.0",
"description": "Security module for koa applications.",
"main": "index.js",
"author": "Meir Shamay <[email protected]>",
"scripts": {
"test-only": "NODE_ENV=test mocha --require co-mocha test/setup.js 'lib/**/*.spec.js'",
"lint": "eslint lib",
"test": "npm run lint && npm run test-only",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"contributors": [
"Ana Trachtman <[email protected]>"
],
"repository": "altonotch/koa-protect",
"keywords": [
"security",
"koa",
"sql injection",
"xss"
],
"pre-commit": [
"test"
],
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"koa-bodyparser": "^4.2.0",
"chai": "3.5.0",
"co-mocha": "1.2.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "3.5.0",
"koa": "^2.0.1",
"koa-router": "^7.4.0",
"fastbench": "1.0.1",
"mocha": "3.3.0",
"pre-commit": "1.2.2",
"redis": "2.7.1",
"semantic-release": "^6.3.6",
"sinon": "2.2.0",
"sinon-chai": "2.10.0",
"supertest": "3.0.0",
"traverse": "0.6.6"
},
"dependencies": {
"debug": "2.6.6",
"koa-helmet": "^4.0.0",
"koa-ratelimit": "^4.0.0",
"ratelimiter": "3.0.3"
}
}