-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (39 loc) · 1.58 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
{
"name": "angular-seed",
"private": true,
"version": "0.0.0",
"description": "A starter project for AngularJS",
"repository": "https://github.com/angular/angular-seed",
"license": "MIT",
"dependencies": {
"bower": "^1.4.1",
"grunt-contrib-clean": "^0.4.1",
"grunt-contrib-connect": "^0.9.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.5.1",
"grunt": "^0.4.5",
"karma-chrome-launcher": "^0.1.12",
"http-server": "^0.6.1",
"grunt-contrib-sass": "^0.9.2",
"karma-jasmine": "^0.1.5",
"npm": "^2.11.1",
"karma": "^0.12.36",
"protractor": "^1.0.0",
"shelljs": "^0.2.6",
"tmp": "^0.0.23"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 5000 -c-1",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/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' + sed(/sourceMappingURL=angular-loader.min.js.map/,'sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map','app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}