-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 778 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 778 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
{
"name": "nodejs-realtime-startkit"
, "description": "NodeJS Realtime Start Kit."
, "keywords": ["nodejs", "realtime", "websockets", "socket.io", "bootstrap"]
, "author": "Asaf Shakarchi."
, "version": "0.0.1"
, "private": true
, "engines": {
"node": "0.10.x"
, "npm": "1.2.x"
}
, "scripts": {
"start": "./node_modules/.bin/nodemon server.coffee",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec test/test-*.js"
}
, "dependencies": {
"coffee-script": "latest",
"socketstream": "latest",
"ss-coffee": "latest",
"ss-stylus": "latest"
}
, "devDependencies": {
"supertest": "latest"
, "should": "latest"
, "mocha": "latest"
, "nodemon": "latest"
}
}