This repository has been archived by the owner on Jan 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 5.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@holisticon/angular-common",
"version": "1.4.2",
"description": "Common angular build module for Angular 2",
"scripts": {
"preclean": "npm i rimraf",
"clean": "rimraf npm-debug.log* .awcache node_modules dist target 'src/**/*.js' 'src/**/*.js.map' test/e2e/.awcache test/e2e/node_modules",
"postclean": "npm i && cd test/e2e && npm i && npm i ../..",
"webpack": "webpack",
"watch": "cross-env NODE_ENV=development webpack-dev-server --inline --progress --port 3000 ",
"build": "npm run tslint && npm run tsc && cross-env NODE_ENV=production webpack",
"lite": "lite-server",
"test": "cross-env NODE_ENV=test jasmine-node test/specs/*.spec.js --junitreport --output target/test-reports/ --verbose --noStack --color",
"debug": "node --debug-brk node_modules/jasmine-node/lib/jasmine-node/cli.js test/specs/*.spec.js",
"e2e": "cd test/e2e && npm run test",
"watch-test": "cross-env NODE_ENV=test karma start",
"tslint": "tslint \"test/**/*.ts\" --exclude \"test/e2e/node_modules/**/*\"",
"tsc": "tsc",
"jsdoc": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md ./etc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release:pre": "npm run build && npm run test",
"release:post": "npm run changelog && npm run changelog:add",
"release:major": "npm version major && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm run version-and-push",
"release:minor": "npm version minor && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm run version-and-push",
"release:patch": "npm version patch && npm run release:pre && git push origin && git push origin --tags && npm run release:post && npm run version-and-push",
"version-and-push": "git push origin && git push origin --tags && npm run publish-and-merge",
"publish-and-merge": "git checkout master && git merge develop && git push && git checkout develop && npm publish",
"prepublish": "npm run build"
},
"dependencies": {
"@angular/tsc-wrapped": "4.0.3",
"@ngtools/webpack": "1.8.0",
"@types/core-js": "0.9.37",
"@types/jasmine": "2.5.53",
"@types/node": "7.0.8",
"@types/source-map": "0.5.0",
"@types/uglify-js": "2.6.28",
"awesome-typescript-loader": "3.3.0",
"codelyzer": "3.0.0",
"concurrently": "3.4.0",
"copy-webpack-plugin": "4.2.0",
"core-js": "2.4.1",
"cross-env": "3.2.4",
"css-loader": "0.28.7",
"del": "2.2.2",
"es6-promise-loader": "1.0.2",
"exports-loader": "0.6.4",
"expose-loader": "0.7.3",
"file-loader": "1.1.5",
"html-webpack-plugin": "2.30.1",
"imports-loader": "0.7.1",
"istanbul-instrumenter-loader": "3.0.0",
"jasmine-core": "2.6.4",
"json-loader": "0.5.7",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"karma-junit-reporter": "1.2.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-remap-coverage": "0.1.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.5",
"node-sass": "4.5.2",
"offline-plugin": "4.8.4",
"open-browser-webpack-plugin": "0.0.5",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.14",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.10",
"remap-istanbul": "0.9.1",
"sass-loader": "6.0.6",
"source-map-loader": "0.2.3",
"style-loader": "0.19.0",
"to-fast-properties": "1.0.2",
"to-string-loader": "1.1.5",
"tslib": "1.7.1",
"tslint": "5.4.3",
"tslint-eslint-rules": "4.1.1",
"tslint-loader": "3.5.3",
"typedoc": "0.5.8",
"typescript": "2.3.3",
"typings": "2.1.0",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.3",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "4.1.1",
"webpack-notifier": "1.5.0",
"webpack-visualizer-plugin": "0.1.11"
},
"devDependencies": {
"@angular/common": "4.0.3",
"@angular/compiler": "4.0.3",
"@angular/compiler-cli": "4.0.3",
"@angular/core": "4.0.3",
"@angular/forms": "4.0.3",
"@angular/http": "4.0.3",
"@angular/platform-browser": "4.0.3",
"@angular/platform-browser-dynamic": "4.0.3",
"@angular/router": "4.0.3",
"conventional-changelog-cli": "1.3.1",
"ink-docstrap": "1.3.0",
"jasmine-json": "0.0.3",
"jasmine-node": "1.14.5",
"jsdoc": "3.4.3",
"node-sass": "4.5.2",
"rimraf": "2.6.1",
"rxjs": "5.3.0",
"zone.js": "0.8.10"
},
"peerDependencies": {
"@angular/common": ">=4.0.0 || >= 4.1.0",
"@angular/core": ">=4.0.0 || >= 4.1.0",
"@angular/compiler": ">=4.0.0 || >= 4.1.0",
"@angular/compiler-cli": ">=4.0.0 || >= 4.1.0",
"@angular/forms": ">=4.0.0 || >= 4.1.0",
"@angular/http": ">=4.0.0 || >= 4.1.0",
"@angular/platform-browser": ">=4.0.0 || >= 4.1.0",
"@angular/platform-browser-dynamic": ">=4.0.0 || >= 4.1.0",
"rxjs": ">=5.2.0 || >=5.4.0",
"zone.js": ">=0.8.4"
},
"keywords": [
"angular2",
"holisticon",
"webpack"
],
"repository": {
"type": "git",
"url": "https://github.com/holisticon/angular-common.git"
},
"author": "Martin Reinhardt",
"license": "MIT",
"engine-strict": true,
"engines": {
"node": ">= 6",
"npm": ">= 3"
}
}