forked from cam-technologies/time-booker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 3.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "time-booker",
"description": "Web based time booking application, build using the MEEN stack.",
"version": "0.0.0",
"private": true,
"author": "C.A.M. Technologies",
"contributors": [
{
"name": "Martin Micunda",
"mail": "[email protected]",
"url": "http://martinm.net/"
},
{
"name": "Christopher Laughlin",
"mail": "[email protected]",
"url": "http://www.christopherlaughlin.co.uk/"
},
{
"name": "Andrew McDowell",
"mail": "[email protected]"
}
],
"homepage": "https://github.com/cam-technologies/time-booker",
"main": "server/src/server.js",
"scripts": {
"jshint": "gulp jshint",
"htmlhint": "gulp htmlhint",
"test": "gulp test:unit",
"dep-check": "david"
},
"pre-commit": [
"jshint",
"htmlhint",
"test",
"dep-check"
],
"repository": {
"type": "git",
"url": "https://github.com/cam-technologies/time-booker"
},
"bugs": {
"url": "https://github.com/cam-technologies/time-booker/issues"
},
"keywords": [
"time booking",
"booking"
],
"dependencies": {
"pre-commit": "0.0.9",
"express": "^4.1.0",
"morgan": "^1.0.0",
"body-parser": "^1.0.2",
"method-override": "~2.0.2",
"errorhandler": "^1.0.0",
"nconf": "^0.6.9",
"mongoose": "~3.8.12",
"mongo-migrate": "~0.1.0",
"migrate": "~0.1.4"
},
"devDependencies": {
"gulp": "^3.6.0",
"bower": "^1.3.3",
"wiredep": "^1.3.0",
"tiny-lr": "^0.0.7",
"gulp-bower": "0.0.5",
"gulp-jshint": "^1.5.0",
"gulp-htmlhint": "^0.0.7",
"gulp-clean": "~0.3.0",
"gulp-usemin": "^0.3.3",
"gulp-rev": "~0.4.1",
"gulp-uglify": "^0.3.0",
"gulp-size": "~0.4.0",
"gulp-minify-css": "^0.3.0",
"gulp-watch": "^0.6.4",
"gulp-livereload": "~2.0.0",
"gulp-autoprefixer": "^0.0.7",
"gulp-imagemin": "~0.6.0",
"gulp-header": "^1.0.2",
"gulp-minify-html": "^0.1.1",
"gulp-bump": "^0.1.6",
"gulp-exec": "^2.0.1",
"gulp-util": "^2.2.14",
"gulp-if": "^1.2.0",
"gulp-concat": "^2.1.7",
"gulp-ember-templates": "~0.5.1",
"gulp-karma": "^0.0.4",
"gulp-ng-constant": "^0.1.0",
"gulp-help": "^0.1.0",
"gulp-gh-pages": "0.1.4",
"gulp-inject": "^0.4.1",
"gulp-nodemon": "^1.0.2",
"gulp-istanbul-enforcer": "^1.0.2",
"gulp-protractor": "^0.0.7",
"protractor": "~0.24.0",
"protractor-screenshot-reporter": "^0.0.5",
"karma": "~0.10.10",
"karma-firefox-launcher": "^0.1.3",
"karma-chrome-launcher": "^0.1.2",
"karma-safari-launcher": "^0.1.1",
"karma-phantomjs-launcher": "^0.1.4",
"karma-junit-reporter": "^0.2.1",
"karma-qunit": "^0.1.1",
"karma-ember-preprocessor": "^1.5.0",
"karma-coverage": "^0.2.1",
"karma-coveralls": "^0.1.4",
"jasmine-reporters": "^0.4.0",
"run-sequence": "^0.3.6",
"jshint-stylish": "^0.2.0",
"minimist": "^0.1.0",
"david": "^3.1.0",
"semver": "^2.3.0",
"gulp-qunit": "~0.3.3",
"gulp-replace": "~0.3.0",
"conventional-changelog": "0.0.11",
"gulp-shell": "~0.2.7",
"gulp-compass": "~1.1.9",
"mm-mongoose-connection": "0.0.*"
},
"license": "MIT",
"engines": {
"node": ">=0.10",
"npm": ">=1.3.x"
}
}