-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
57
58
59
60
61
62
{
"name": "dezibel-api",
"version": "1.0.0",
"repository": "git@github.com:geclos/dezibel-api.git",
"description": "api for dezibel",
"main": "src/index.js",
"scripts": {
"test": "nyc ava",
"test:watch": "ava --watch",
"start": "nodemon src/index.js",
"report": "nyc report --reporter=html --cache",
"build": "node --optimize_for_size --max_old_space_size=920 --gc_interval=100 src/index"
},
"author": "Gerard Clos",
"license": "ISC",
"dependencies": {
"async": "^2.0.0",
"bcrypt": "^1.0.0",
"bell": "^8.2.0",
"blipp": "^2.3.0",
"bluebird": "^3.4.1",
"good": "^7.0.1",
"good-console": "^6.1.2",
"good-squeeze": "^5.0.0",
"hapi": "^16.0.1",
"hapi-alive": "^1.4.0",
"hapi-auth-jwt": "^4.0.0",
"hapi-authorization": "^3.0.2",
"hapi-swagger": "^7.2.0",
"hat": "0.0.3",
"inert": "^4.0.1",
"joi": "^10.0.2",
"jsonwebtoken": "^7.1.6",
"mongodb": "^2.2.9",
"node-env-file": "^0.1.8",
"redis": "^2.6.2",
"throng": "^4.0.0",
"tv": "^6.1.0",
"vision": "^4.1.0"
},
"devDependencies": {
"ava": "^0.18.1",
"coveralls": "^2.11.12",
"fakeredis": "^2.0.0",
"foreman": "^2.0.0",
"nodemon": "^1.9.2",
"nyc": "^10.0.0",
"redis-mock": "^0.16.0",
"sinon": "^1.17.5",
"supertest": "^3.0.0",
"tap-nyan": "1.1.0"
},
"standard": {
"parser": "babel-eslint"
},
"ava": {
"concurrency": 5
},
"engines": {
"node": "6.3.0"
}
}