-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "hapi-limitd",
"version": "1.1.0",
"description": "an auth0/limitd plugin for hapi",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/720kb/hapi-limitd"
},
"scripts": {
"lint": "eslint -c .eslintrc index.js && jshint -c .jshintrc --reporter=unix index.js && jscs -c .jscsrc index.js",
"precommit": "npm run-script lint",
"preversion": "npm run-script lint",
"version": "git add -A .",
"postversion": "git push && git push --tags",
"test": "lab --debug --verbose --colors spec/*.js"
},
"author": {
"name": "Dario Andrei",
"email": "[email protected]",
"url": "https://github.com/wouldgo"
},
"contributors": [
{
"name": "Filippo Oretti",
"email": "[email protected]",
"url": "https://github.com/45kb"
}
],
"license": "MIT",
"devDependencies": {
"babel-eslint": "^4.1.6",
"code": "^2.1.0",
"eslint": "^1.10.3",
"hapi": "^11.1.4",
"husky": "^0.10.2",
"jscs": "^2.7.0",
"jshint": "^2.8.0",
"lab": "^8.0.1"
},
"dependencies": {
"joi": "^7.1.0",
"limitd-client": "^1.7.1"
}
}