-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1015 Bytes
/
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
{
"name": "Trek",
"version": "0.1.19",
"scripts": {
"test": "./node_modules/.bin/nodeunit test",
"runtest": "./node_modules/.bin/nodeunit",
"start": "coffee ./trek/Server.coffee",
"lint": "find ./trek -name '*.coffee' -exec coffeelint {} -f coffeelint.conf \\; && node_modules/jscs/bin/jscs static/js/trek.js && node_modules/jscs/bin/jscs static/js/trek/*.js",
"todo": "grep -A 5 -r TODO trek/*; grep -A 5 -r TODO static/*; grep -A 5 -r TODO test/*; grep -A 5 -r TODO views/*",
"compile_academy": "scripts/build_academy.sh"
},
"dependencies": {
"coffee-script": "1.7.1",
"coffeelint": "1.3.0",
"colors": "0.6.2",
"commander": "2.6.0",
"cookie": "0.1.2",
"coveralls": "^2.11.2",
"ejs": "1.0.0",
"express": "3.5.1",
"jscs": "1.10.0",
"nodeunit": "0.9.0",
"socket.io": "0.9.15",
"stylus": "0.48.1"
},
"devDependencies": {
"jscoverage": "^0.5.9"
},
"jscsConfig": {
"preset": "mdcs",
"validateIndentation": null
}
}