forked from cadecairos/hapi-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "hapi-limiter",
"version": "0.1.1",
"description": "Rate limiting plugin for Hapi",
"main": "index.js",
"scripts": {
"test": "lab -t 100 -c --verbose --colors --assert code --timeout 5000 && npm run lint",
"test:reportcoverage": "lab -r lcov | ./node_modules/.bin/coveralls",
"lint": "npm run jshint && npm run jscs",
"jshint": "jshint -c node_modules/mofo-style/linters/.jshintrc test index.js",
"jscs": "jscs -c node_modules/mofo-style/linters/.jscsrc test index.js"
},
"author": "Christopher De Cairos",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cadecairos/hapi-limiter"
},
"dependencies": {
"boom": "^2.7.1",
"hoek": "^2.11.0"
},
"devDependencies": {
"async": "^1.0.0",
"catbox-memory": "^1.1.1",
"code": "^1.3.0",
"coveralls": "^2.11.2",
"hapi": "^8.4.0",
"jscs": "^1.11.3",
"jshint": "^2.6.3",
"lab": "^5.5.0",
"mofo-style": "latest",
"sinon": "^1.14.1"
},
"engines": {
"npm": "^2.5.1",
"node": "^0.12.1"
}
}