-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"name": "server-template",
"repository" : {
"type" : "git",
"url" : "https://github.com/nss-cohort-2014-04-07/server-template"
},
"version": "0.0.1",
"private": true,
"bin": {"coveralls" : "./node_modules/coveralls/bin/coveralls.js"},
"scripts":{
"start" : "node app/app.js;",
"traceur" : "git clone https://github.com/google/traceur-compiler tools/traceur-compiler;cd tools/traceur-compiler;npm install;make clean;make;rm ../../app/static/js/vendor/traceur.js;cp bin/traceur.js ../../app/static/js/vendor;",
"nss" : "npm install;npm run traceur;",
"test" : "mocha test/types --recursive -R spec -t 5000",
"watch" : "mocha test/types --recursive -R spec -t 5000 --watch",
"coveralls" : "./node_modules/mocha/bin/mocha test/types --recursive -r blanket -R mocha-lcov-reporter | coveralls"
},
"dependencies": {
"express": "*",
"lodash": "*",
"moment": "*",
"mongodb": "*",
"jade": "*",
"express-less": "*",
"body-parser": "*",
"morgan": "*",
"method-override": "*",
"traceur": "*",
"socket.io": "*",
"bcrypt": "*",
"cookie-session": "*",
"cookies": "*",
"async": "*",
"request": "*"
},
"devDependencies": {
"grunt": "*",
"grunt-contrib-jshint": "*",
"jshint-stylish": "*",
"grunt-contrib-watch": "*",
"mocha": "*",
"chai" : "*",
"superagent": "*",
"supertest": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"blanket": "*"
},
"config": {
"blanket": {
"pattern": "/app/"
}
}
}