-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "name-of-application",
"repository" : {
"type" : "git",
"url" : "http://github.com/mattLummus/priorisize.git"
},
"version": "0.0.1",
"bin": {"coveralls" : "./node_modules/coveralls/bin/coveralls.js"},
"private": true,
"scripts": {
"start" : "node app/app.js",
"test" : "mocha --recursive test",
"testwatch" : "mocha -w --recursive test",
"coveralls" : "./node_modules/mocha/bin/mocha test --recursive -r blanket -R mocha-lcov-reporter | coveralls",
"startMongo" : "mongod --config ~/download/config-files/mongodb.conf"
},
"dependencies": {
"express": "*",
"lodash": "*",
"moment": "*",
"mongodb": "*",
"bcrypt": "*",
"connect-redis": "*",
"jade": "*",
"express-less": "*",
"request": "*",
"express-session": "*",
"socket.io": "*"
},
"devDependencies": {
"grunt": "*",
"grunt-contrib-jshint": "*",
"jshint-stylish": "*",
"grunt-contrib-watch": "*",
"mocha": "*",
"chai" : "*",
"superagent": "*",
"supertest": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"blanket": "*"
},
"config": {
"blanket": {
"pattern": "/app/"
}
}
}