-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.35 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
{
"name": "comida",
"version": "0.0.0",
"main": "server/server.js",
"scripts": {
"pretest": "npm run beautify && npm run jshint",
"hint": "./node_modules/jshint/bin/jshint .",
"beautify": "npm run beautify:js && npm run beautify:css && npm run beautify:html",
"beautify:js": "git ls-files '**/*.js' | grep -vf .jshintignore | xargs ./node_modules/js-beautify/js/bin/js-beautify.js -s 2 -r -j --good-stuff",
"beautify:css": "git ls-files '**/*.css' | grep -vf .jshintignore | xargs ./node_modules/js-beautify/js/bin/css-beautify.js -s 2 -r",
"beautify:html": "git ls-files '**/*.html' | grep -vf .jshintignore | xargs ./node_modules/js-beautify/js/bin/html-beautify.js -s 2 -r"
},
"engines": {
"node": "0.10.x"
},
"dependencies": {
"compression": "^1.0.3",
"errorhandler": "^1.1.1",
"gulp": "^3.8.9",
"gulp-exec": "^2.1.1",
"gulp-install": "^0.2.0",
"gulp-run": "^1.6.4",
"loopback": "^2.0.0",
"loopback-boot": "^2.0.0",
"loopback-connector-mongodb": "^1.4.4",
"loopback-datasource-juggler": "^2.7.0",
"loopback-passport": "^1.0.2",
"newrelic": "^1.13.0",
"serve-favicon": "^2.0.1"
},
"optionalDependencies": {
"loopback-explorer": "^1.1.0"
},
"devDependencies": {
"bower": "^1.3.12",
"strongloop": "^2.9.3",
"jshint": "~2.5.10",
"js-beautify": "~1.5.4"
}
}