forked from anowak/sample-nodejs-mongo-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 710 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 710 Bytes
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
{
"name": "sample-nodejs-mongo-heroku",
"version": "0.1.0",
"description": "Sample of how to setup CI to Heroku for Node.js+MongoDB project",
"main": "app.js",
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "[email protected]:Shippable/sample-nodejs-mongo-heroku.git"
},
"homepage": "https://github.com/Shippable/sample-nodejs-mongo-heroku",
"dependencies": {
"express": "~4.2.0",
"mongoose": "^3.8.12",
"when": "~3.2.3"
},
"devDependencies": {
"chai": "~1.9.1",
"grunt": "^0.4.0",
"grunt-simple-mocha": "^0.4.0",
"istanbul": "^0.2.9",
"mocha": "^1.18.2",
"xunit-file": "0.0.5",
"chai-as-promised": "~4.1.1"
}
}