forked from giovannicandido/angular-spa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "angular-spa",
"version": "1.1.0",
"description": "Utilities for angular 2 applications backed by generator-spring-spa project",
"main": "index.js",
"angular-cli": {},
"scripts": {
"clean": "rm -rf dist/",
"lint": "tslint ./src/**/*.ts -t verbose",
"lint:fix": "tslint ./src/**/*.ts --fix",
"test": "karma start ./karma/karma.conf.js",
"test:ci": "karma start ./karma/karma.conf.js --browsers Chrome --autoWatch=false --singleRun=true",
"test:headless": "karma start ./karma/karma.conf.js --browsers PhantomJS --autoWatch=true --singleRun=false",
"compile": "ngc",
"watch": "ngc --watch",
"pree2e": "npm run webdriver:update",
"e2e": "protractor protractor.config.js --kill-others --success first",
"webdriver:update": "webdriver-manager update",
"copyfiles": "cp -rf package.dist.json dist/package.json && cp -rf README.md LICENSE dist",
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/src/bundles/angular-spa.umd.js --screw-ie8 --compress --mangle --comments --output dist/src/bundles/angular-spa.umd.min.js",
"keepVersion": "export version=`json -f package.json version`;json -I -f package.dist.json -e `echo \"this.version='$version'\"`",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copyfiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giovannicandido/angular-spa.git"
},
"keywords": [
"angular2",
"ng2",
"utils",
"ui",
"keycloak",
"security"
],
"author": "Giovanni Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/giovannicandido/angular-spa/issues"
},
"homepage": "https://github.com/giovannicandido/angular-spa#readme",
"dependencies": {
"@angular/common": ">=4.0.0 <6.0.0",
"@angular/core": ">=4.0.0 <6.0.0",
"@angular/http": ">=4.0.0 <6.0.0",
"@angular/platform-browser": ">=4.0.0 <6.0.0",
"@angular/router": ">=4.0.0 <6.0.0",
"angular-http-interceptor": "^2.0.0",
"core-js": "^2.4.1",
"keycloak-js": "^4.0.0-beta.1",
"rxjs": ">=5.0.0 <6.0.0",
"zone.js": ">=0.6.26 < 2.0.0"
},
"devDependencies": {
"@angular/compiler": "^5.2.10",
"@angular/compiler-cli": "^5.2.10",
"@angular/platform-browser": "^5.2.10",
"@angular/platform-browser-dynamic": "^5.2.10",
"@ngtools/webpack": "^1.3.3",
"@types/jasmine": "^2.5.47",
"@types/node": "^9.6.6",
"es6-shim": "^0.35.3",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.1.0",
"json": "^9.0.6",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.0",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.10",
"rollup": "^0.58.1",
"rollup-plugin-node-resolve": "^3.0.0",
"ts-loader": "^4.2.0",
"tslint": "^5.3.2",
"tslint-loader": "^3.5.3",
"typescript": "~2.8.3",
"uglify-js": "^3.0.12",
"webpack": "^4.6.0"
}
}