forked from rjmreis/hapi-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 997 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 997 Bytes
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
{
"name": "hapi-api",
"version": "0.2.2",
"license": "MIT",
"description": "Lean Hapi API Boilerplate",
"bugs": {
"url": "https://github.com/rjmreis/hapi-api/issues"
},
"main": "server.js",
"scripts": {
"test": "./node_modules/lab/bin/lab -v",
"start": "node server.js",
"eslint": "eslint . --ext .js --ignore node_modules/**"
},
"author": "Ricardo Reis",
"homepage": "https://github.com/rjmreis/hapi-api#readme",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/rjmreis/hapi-api.git"
},
"keywords": [
"hapi"
],
"dependencies": {
"glob": "^7.0.0",
"glue": "^3.2.0",
"hapi": "^13.0.0",
"hapi-auth-jwt2": "^5.4.1",
"plugo": "^0.3.5"
},
"devDependencies": {
"blipp": "^2.3.0",
"code": "^2.1.0",
"eslint": "^2.2.0",
"good": "^6.6.0",
"good-console": "^5.3.1",
"lab": "^9.0.0"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
}
}
}