-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "TotalBriecall",
"version": "0.1.1",
"description": "Prototype for Total Briecall",
"main": "index.js",
"scripts": {
"start": "node app/index.js",
"test": "node ./node_modules/mocha/bin/mocha --require test/bootstrap --recursive --reporter spec ./test",
"test-coverage": "node ./node_modules/istanbul/lib/cli.js cover --dir ./reports/coverage --report html ./node_modules/mocha/bin/_mocha -- --require test/bootstrap --recursive --reporter spec ./test",
"apidoc": "node ./node_modules/apidoc/bin/apidoc --file-filters '^api.js$' --input app/routes/ --output app/views/docs/api/",
"jshint": "node ./node_modules/jshint/bin/jshint app/ test/"
},
"dependencies": {
"apidoc": "^0.13.1",
"bluebird": "^2.9.30",
"body-parser": "^1.13.1",
"bower": "1.4.1",
"colors": "^1.1.2",
"compression": "^1.5.0",
"connect-mongo": "^0.8.1",
"consolidate": "^0.13.1",
"cookie-parser": "^1.3.5",
"ejs": "^2.3.1",
"errorhandler": "^1.4.0",
"escape-html": "^1.0.2",
"express": "^4.13.0",
"express-session": "^1.11.3",
"express-validator": "^2.12.1",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-copy": "0.8.0",
"grunt-sass": "1.0.0",
"method-override": "^2.3.3",
"mime": "^1.3.4",
"moment": "^2.10.3",
"moment-duration-format": "^1.3.0",
"mongoose": "^4.0.6",
"newrelic": "^1.20.2",
"node-sass": "3.2.0",
"object-path": "^0.9.2",
"request-promise": "^0.4.2",
"sanitize-html": "^1.7.0",
"serve-favicon": "^2.3.0",
"underscore": "^1.8.3"
},
"engines": {
"node": "0.12.x"
},
"bugs": {
"url": "https://github.com/TeraLogics/TotalBriecall/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/TeraLogics/TotalBriecall"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"grunt-contrib-watch": "0.6.1",
"istanbul": "^0.3.16",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"sinon": "^1.15.3",
"supertest": "^1.0.1"
},
"homepage": "https://github.com/TeraLogics/TotalBriecall",
"directories": {
"example": "examples",
"test": "test"
}
}