-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "aerodoc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "mocha",
"populateDb": "node ./scripts/loadSalesAgents.js",
"coverage": "./node_modules/istanbul/lib/cli.js cover -x **/app/controllers/** -x **/app/utility/** node_modules/mocha/bin/_mocha test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cfoskin/aerodoc.git"
},
"author": "Colum Foskin",
"license": "ISC",
"bugs": {
"url": "https://github.com/cfoskin/aerodoc/issues"
},
"homepage": "https://github.com/cfoskin/aerodoc#readme",
"dependencies": {
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.2",
"express": "^4.14.0",
"express-boom": "^1.0.0",
"express-handlebars": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "3.1.2",
"mongodb": "^2.2.10",
"mongoose": "^4.6.3",
"mongoose-double": "0.0.1",
"morgan": "^1.7.0",
"node-geocoder": "^3.16.0",
"supertest": "^2.0.1",
"unifiedpush-node-sender": "^0.14.1"
}
}