forked from angular/angular-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.43 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
{
"name": "angular-seed",
"private": true,
"version": "0.0.0",
"description": "A starter project for AngularJS",
"repository": "https://github.com/angular/angular-seed",
"license": "MIT",
"devDependencies": {
"@types/angular": "~1.5.19",
"@types/angular-mocks": "~1.5.5",
"@types/angular-route": "~1.3.2",
"@types/jasmine": "~2.5.37",
"@types/jwt-decode": "~1.4.28",
"@types/lodash": "~4.14.38",
"@types/source-map": "~0.1.29",
"@types/uglify-js": "~2.6.28",
"angular": "~1.5.8",
"angular-mocks": "^1.6.1",
"angular-route": "~1.5.8",
"file-loader": "~0.9.0",
"html-webpack-plugin": "~2.24.1",
"http-server": "^0.9.0",
"istanbul": "~0.4.5",
"istanbul-instrumenter-loader": "~1.0.0",
"jasmine": "~2.5.2",
"jquery": "~3.1.1",
"karma": "~1.3.0",
"karma-coverage": "~1.1.1",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "~1.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-typescript-preprocessor": "~0.3.0",
"karma-webpack": "~1.8.0",
"node-sass": "~3.11.1",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "~2.1.13",
"protractor": "^4.0.9",
"raw-loader": "0.5.1",
"ts-loader": "~1.0.0",
"typescript": "~2.0.6",
"typings": "~1.5.0",
"url-loader": "0.5.7",
"webpack": "1.13.3"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "node_modules/.bin/webpack && http-server -a localhost -p 8100 -c-1 ./app",
"build": "tsc -p ./",
"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 \"var fs=require('fs'),indexFile='app/index-async.html',loaderFile='app/bower_components/angular-loader/angular-loader.min.js',loaderText=fs.readFileSync(loaderFile,'utf-8').split(/sourceMappingURL=angular-loader.min.js.map/).join('sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map'),indexText=fs.readFileSync(indexFile,'utf-8').split(/\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/).join('//@@NG_LOADER_START@@\\n'+loaderText+' //@@NG_LOADER_END@@');fs.writeFileSync(indexFile,indexText);\""
}
}