-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "node-express-mongoose-example",
"version": "0.1.0",
"homepage": "https://github.com/varju/node-express-mongoose-example",
"author": {
"name": "Alex Varju",
"email": "alex@varju.ca"
},
"repository": {
"type": "git",
"url": "git://github.com/varju/node-express-mongoose-example.git"
},
"bugs": {
"url": "https://github.com/varju/node-express-mongoose-example/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/varju/node-express-mongoose-example/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test",
"travis-cov": {
"threshold": 95
}
},
"dependencies": {
"express": "~3.4.0",
"mongoose": "~3.6.19",
"asyncblock": "~2.1.14"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-typescript": "~0.2.4",
"grunt-curl": "~1.1.1",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-watch": "~0.4.0",
"grunt-mocha-test": "~0.6.3",
"grunt-nodemon": "~0.1.1",
"grunt-env": "~0.4.0",
"mocha": "~1.12.1",
"supertest": "~0.7.1",
"should": "~1.2.2",
"travis-cov": "~0.2.4",
"blanket": "~1.1.5",
"sinon": "~1.7.3"
}
}