-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.84 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
70
71
{
"name": "singpathfire",
"version": "0.2.0",
"description": "An AngularFire-based version of SingPath",
"main": "index.js",
"scripts": {
"autotest": "./node_modules/karma/bin/karma start config/karma.js --auto-watch --no-single-run",
"build": "./node_modules/.bin/gulp",
"clean": "./bin/init-protractor.sh stop && ./node_modules/.bin/gulp clean",
"dist": "./node_modules/.bin/gulp dist",
"fmt": "./node_modules/.bin/jscs -x src/",
"lint": "./node_modules/.bin/eslint src/ && ./node_modules/.bin/jscs src/",
"postinstall": "./node_modules/.bin/webdriver-manager update && ./node_modules/.bin/bower-installer",
"send-to-coveralls": "cat ./coverage/**/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"serve-build": "./node_modules/.bin/gulp && ./bin/server.js --root=./build --port=8886",
"serve-build-debug": "./node_modules/.bin/gulp build:debug && ./bin/server.js --root=./build-debug --port=8886",
"serve-build-dev": "./node_modules/.bin/gulp build:dev && ./bin/server.js --root=./build-dev --port=8887",
"serve-build-e2e": "./node_modules/.bin/gulp build:e2e && ./bin/server.js --root=./build-e2e --port=5555",
"serve-dist": "./node_modules/.bin/gulp dist && ./bin/server.js --root=./dist --port=8885",
"start": "./bin/server.js --root=./src --port=8888 -o",
"test": "./node_modules/karma/bin/karma start config/karma.js",
"test-e2e": "./bin/init-protractor.sh start && ./node_modules/.bin/protractor config/protractor.js && ./bin/init-protractor.sh stop",
"watch": "./node_modules/.bin/gulp watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ChrisBoesch/singpathfire.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChrisBoesch/singpathfire/issues"
},
"homepage": "https://github.com/ChrisBoesch/singpathfire",
"devDependencies": {
"bower-installer": "^1.2.0",
"coveralls": "^2.11.2",
"del": "^1.1.1",
"eslint": "^0.21.0",
"express": "^4.11.1",
"firebase-token-generator": "^2.0.0",
"gulp": "git://github.com/gulpjs/gulp.git#4.0",
"gulp-angular-templatecache": "^1.5.0",
"gulp-concat": "^2.4.3",
"gulp-debug": "^2.0.0",
"gulp-filter": "^2.0.0",
"gulp-if": "^1.2.5",
"gulp-minify-css": "^0.3.13",
"gulp-rename": "^1.2.0",
"gulp-rev": "^3.0.0",
"gulp-rev-replace": "^0.3.1",
"gulp-targethtml": "0.0.0",
"gulp-uglify": "^1.1.0",
"gulp-useref": "^1.1.1",
"jasmine-core": "^2.1.3",
"js-yaml": "^3.2.5",
"jscs": "^1.12.0",
"karma": "0.13.x",
"karma-coverage": "0.5.x",
"karma-jasmine": "0.3.x",
"karma-phantomjs-launcher": "0.2.x",
"lazypipe": "^0.2.2",
"minimist": "^1.1.0",
"phantomjs": "^1.9.13",
"protractor": "1.3.x",
"q": "^1.1.2",
"request": "^2.51.0",
"streamqueue": "^0.1.1",
"url-join": "0.0.1"
}
}