-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.8 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.8 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "fastchat",
"version": "0.6.2",
"description": "A fast, small, chat server.",
"main": "coffee_bridge.js",
"scripts": {
"test": "make travis"
},
"keywords": [
"chat",
"server"
],
"repository": {
"type": "git",
"url": "git@github.com:fastchat/server.git"
},
"bin": "./bin/index.js",
"preferGlobal": true,
"author": "Ethan Mick <ethan@ethanmick.com>",
"license": "MIT",
"config": {
"blanket": {
"debug": true,
"pattern": "lib",
"shortnames": true,
"data-cover-flags": "debug",
"data-cover-reporter-options": {
"shortnames": true
},
"data-cover-never": "node_modules",
"loader": "./node-loaders/coffee-script"
},
"travis-cov": {
"threshold": 50
}
},
"dependencies": {
"apn": "1.6.2",
"async": "0.9.0",
"bcrypt": "0.8.2",
"boom": "2.6.1",
"coffee-script": "1.8.0",
"hapi": "8.4.0",
"hapi-auth-bearer-token": "3.1.1",
"hapi-router-coffee": "1.2.0",
"hapi-swagger": "0.7.1",
"hashish": "0.0.4",
"joi": "6.1.0",
"knox": "0.8.9",
"mongoose": "3.8.15",
"mongoose-q": "0.0.12",
"multiparty": "3.2.4",
"node-gcm": "0.9.12",
"q": "1.0.1",
"socket.io": "0.9.16",
"uuid": "1.4.1",
"fastchat-web": "fastchat/web#develop",
"winston": "0.9.0",
"yargs": "3.7.0"
},
"devDependencies": {
"blanket-node": "2.0.0",
"chai": "1.9.2",
"coffeelint": "1.9.2",
"coffeelint-use-strict": "0.0.1",
"coveralls": "2.11.2",
"david": "6.1.5",
"form-data": "0.2.0",
"mocha": "2.1.0",
"mocha-lcov-reporter": "0.0.2",
"sinon": "1.10.3",
"socket.io-client": "0.9.16",
"stream-to-promise": "^1.0.4",
"supertest": "0.14.0",
"travis-cov": "0.2.5"
},
"engines": {
"node": "0.12.x"
}
}