-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.37 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
{
"name": "fast-tracks",
"private": true,
"version": "0.0.1",
"description": "SoundCloud Fast Tracker",
"repository": "https://github.com/yannvr/fast-tracks.git",
"license": "MIT",
"devDependencies": {
"body-parser": "~1.0.0",
"bower": "*",
"browser-sync": "latest",
"cookie-parser": "~1.0.1",
"debug": ">=2.6.9",
"express": "latest",
"gulp": "^3.8.8",
"gulp-autoprefixer": "^1.0.0",
"gulp-sass": "^0.7.3",
"gulp-sourcemaps": "^1.1.5",
"gulp-uglify": "^1.0.1",
"http-server": "^0.6.1",
"jade": "~1.3.0",
"morgan": "latest",
"protractor": "~0.20.1",
"shelljs": "^0.2.6",
"static-favicon": "~1.0.0"
},
"scripts": {
"prestart": "npm install",
"start": "sudo http-server app",
"pretest": "npm install",
"test": "karma start test/karma.conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor test/protractor-conf.js",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}