-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "ride2go",
"description": "federated mobility broker",
"version": "0.0.2",
"engines": {
"node": "0.6.21"
},
"dependencies": {
"coffee-script": "~1.3.3",
"underscore": "~1.4.2",
"socket.io": "0.9.0",
"request": "~2.11.4",
"node.io": "~0.4.12",
"winston": "~0.6.2",
"express": "~3.0.0rc4",
"hiredis": "~0.1.14",
"redis": "~0.8.1",
"jade": "~0.27.6",
"csv": "0.0.19",
"traits": "~0.4.0",
"moment": "~1.7.2"
},
"devDependencies": {
"stylus": "~0.29.0",
"mocha": "~1.6.0",
"chai": "~1.3.0",
"chai-null": "0.1.0",
"sinon-chai": "~2.1.2",
"chai-as-promised": "~3.2.2",
"chai-factories": "~0.1.0",
"chai-http": "~0.3.0"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"build": "(cd ./components/bootstrap && lessc ./less/bootstrap.less > bootstrap.css) && ./node_modules/.bin/cake build",
"doc": "codo -n 'ride2go' -o './doc/api' --cautious --title 'ride2go api documentation' ./src - AUTHORS LICENSE doc/text/REDIS.md",
"test": "./node_modules/.bin/cake -M -t -M 10000 test",
"start": "node lib/server.js"
}
}