-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 KB
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
{
"name": "trainer",
"version": "1.0.0",
"description": "A HIIT personal training application to be used with the companion mobile app",
"engines": {
"node": "0.10.x"
},
"main": "server/index.js",
"directories": {
"test": "test"
},
"bin": {
"coveralls": "./node_modules/coveralls/bin/coveralls.js"
},
"scripts": {
"start": "node server/index.js",
"postinstall": "grunt deploy",
"syntax": "grunt build",
"test": "make test",
"e2e": "make test-e2e",
"e2e-d": "make test-e2e-d",
"coveralls": "make test-cov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ABarnhard/trainer.git"
},
"author": "Adam Barnhard <admbarn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ABarnhard/trainer/issues"
},
"homepage": "https://github.com/ABarnhard/trainer",
"dependencies": {
"async": "^0.9.0",
"aws-sdk": "^2.1.2",
"bcrypt": "^0.8.0",
"bower": "^1.3.12",
"concat-stream": "^1.4.7",
"form-data": "^0.2.0",
"good": "^5.0.0",
"good-console": "^3.0.2",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-jade": "^0.13.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-less": "^0.12.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-jscs": "^1.0.0",
"grunt-shell": "^1.1.1",
"hapi": "^8.0.0",
"hapi-auth-cookie": "^2.0.0",
"joi": "^5.0.2",
"jshint-stylish": "^1.0.0",
"lout": "^6.0.1",
"mongodb": "^1.4.25",
"pg": "^4.1.1",
"request": "^2.51.0",
"stream-to-promise": "^1.0.4"
},
"devDependencies": {
"chai": "^1.10.0",
"coveralls": "^2.11.2",
"lab": "^5.1.0",
"protractor": "^1.6.0"
}
}