-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
59
60
61
62
{
"name": "realtime",
"version": "1.1.2",
"description": "Calumet Real-Time Framework",
"main": "app/index.js",
"scripts": {
"start": "NODE_PATH=app node app",
"start:test": "NODE_ENV=test npm run start",
"start:production": "NODE_ENV=production npm run start",
"test": "npm run test-unit && npm run test-api && npm run test-sockets",
"test-unit": "NODE_ENV=test NODE_PATH=app mocha test/mocha-setup.js 'app/**/*.test.js'",
"test-api": "NODE_ENV=test NODE_PATH=app mocha test/mocha-setup.js 'test/api/**/*.test.js'",
"test-sockets": "NODE_ENV=test NODE_PATH=app karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calumet/realtime.git"
},
"keywords": [
"real-time",
"calumet"
],
"author": "Romel Pérez (romelperez.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/calumet/realtime/issues"
},
"homepage": "https://github.com/calumet/realtime#readme",
"dependencies": {
"body-parser": "^1.16.0",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"cookie-session": "^2.0.0-alpha.2",
"express": "^4.14.0",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"morgan": "^1.7.0",
"sails-mysql": "^0.11.5",
"socket.io": "^1.7.2",
"uuid": "^3.0.1",
"waterline": "^0.11.6",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"jquery": "^3.1.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.3"
}
}