-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.69 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
57
58
{
"name": "Bubbles",
"version": "0.0.1",
"description": "Chat app using Redis, Socket.io and Hapi",
"main": "lib/server.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/_runner.js && istanbul check-coverage --statements 60 --functions 60 --lines 60 --branches 50",
"coverage": "istanbul cover ./node_modules/.bin/tape ./tests/*.js -r html -o ./test/coverage.html",
"start": "node lib/server.js",
"nodemon": "nodemon server.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=ea5c19d8d1385dea0fda29fec82bcd4268b999056e764d533bb33f836dd16743 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./lcov.info",
"build": "babel lib/*.js -d dist"
},
"repository": {
"type": "git",
"url": "https://github.com/heron2014/Bubbles.git"
},
"keywords": [
"chat",
"redis",
"hapi",
"retro",
"90s"
],
"author": "heron2014, nofootnotes",
"license": "GPL",
"bugs": {
"url": "https://github.com/heron2014/Bubbles/issues"
},
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"bell": "^8.0.0",
"crypto": "0.0.3",
"env2": "^2.1.0",
"fb": "^1.1.1",
"handlebars": "^4.0.5",
"hapi": "^13.5.0",
"hapi-auth-jwt2": "^7.0.1",
"hapi-error": "^1.0.4",
"hoek": "^4.0.1",
"inert": "^4.0.1",
"jsonwebtoken": "^7.1.6",
"mongoose": "^4.5.7",
"nock": "^8.0.0",
"qs": "^6.2.1",
"redis": "^2.6.2",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"socket.io-redis": "^1.0.0",
"vision": "^4.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.3.3",
"istanbul": "^0.4.4",
"nodemon": "^1.4.0",
"tape": "^4.0.1"
}
}