-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
68 lines (68 loc) · 2.49 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
{
"name": "tablero",
"version": "0.1.0",
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"generator-flight": "~0.8.0",
"gulp-livereload": "~0.2.0",
"jasmine": "^2.1.1",
"jasmine-node": "^1.14.5",
"js-beautify": "^1.5.5",
"jshint": "^2.6.3",
"karma": "~0.12.0",
"karma-chrome-launcher": "~0.1.0",
"karma-cli": "~0.0.4",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "~0.1.0",
"karma-jasmine": "~0.2.0",
"karma-requirejs": "~0.2.1",
"mockery": "^1.4.0",
"node-static": "~0.7.3",
"requirejs": "~2.1.11",
"tiny-lr": "~0.0.5"
},
"engines": {
"node": "0.10.x"
},
"repository": {
"type": "git",
"url": "https://github.com/twtablero/tablero/"
},
"scripts": {
"build": "gulp rjs",
"livereload": "gulp livereload",
"start": "node app.js",
"test": "npm run client-test; npm run server-test",
"send-coverage": "node node_modules/codeclimate-test-reporter/bin/codeclimate.js coverage/report-lcov/lcov.info",
"client-test": "karma start --single-run",
"server-test": "jasmine-node test/config test/lib",
"functional-test": "REPOS=\"TWtablero/repoTest1;TWtablero/repoTest2\" mvn -f test/spec/functionalTest/rocketboard/pom.xml -Dtest=rocketboard.* test",
"watch": "npm run start > server.log & npm run livereload",
"watch-test": "karma start",
"watch-server-test": "jasmine-node --autotest test/config test/lib --watch lib",
"postinstall": "bower --allow-root install; gulp rjs",
"pretest": "npm run beautify",
"jshint": "./node_modules/jshint/bin/jshint .",
"beautify": "npm run beautify:js && 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"
},
"dependencies": {
"body-parser": "^1.10.0",
"bower": "^1.3.9",
"cookie-parser": "^1.3.3",
"express": "^4.8.7",
"gulp": "~3",
"gulp-requirejs": "^0.1.3",
"gulp-uglify": "^1.0.2",
"hiredis": "^0.1.17",
"inquirer": "^0.8.0",
"istanbul": "^0.3.2",
"nconf": "^0.7.1",
"node-sass": "~0.9.3",
"redis": "^0.12.1",
"underscore": "^1.7.0",
"xmlhttprequest": "^1.6.0"
}
}