This repository has been archived by the owner on Jul 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
100 lines (100 loc) · 3.21 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
{
"name": "angular2-webpack-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for Angular 2 and Webpack",
"keywords": [
"angular2",
"webpack",
"typescript",
"rxjs",
"boilerplate",
"starter"
],
"author": "Valentin Nazarov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kozlice/angular2-webpack-boilerplate.git"
},
"bugs": {
"url": "https://github.com/kozlice/angular2-webpack-boilerplate/issues"
},
"homepage": "https://github.com/kozlice/angular2-webpack-boilerplate",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "npm run lint:ts && npm run lint:sass",
"lint:ts": "tslint **/*.ts --exclude node_modules",
"lint:sass": "sass-lint",
"pretest": "rimraf ./coverage && npm run lint",
"test": "karma start",
"posttest": "npm run coverage",
"coverage": "npm run coverage:remap && npm run coverage:report",
"coverage:remap": "remap-istanbul -i coverage/coverage.json -o coverage/coverage.json -t json -e node_modules,tests,karma.entry.ts",
"coverage:report": "istanbul report",
"prebuild": "rimraf ./dist",
"build": "webpack",
"postinstall": "",
"predocs": "rimraf ./docs",
"docs": "npm run docs:typedoc && npm run docs:kss",
"docs:typedoc": "typedoc --options ./typedoc.json ./src/app",
"docs:kss": "kss --source ./src --destination ./docs/styleguide",
"start": "webpack-dev-server --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base ./dist"
},
"devDependencies": {
"@angular/common": "2.4.4",
"@angular/compiler": "2.4.4",
"@angular/core": "2.4.4",
"@angular/forms": "2.4.4",
"@angular/http": "2.4.4",
"@angular/platform-browser": "2.4.4",
"@angular/platform-browser-dynamic": "2.4.4",
"@angular/router": "3.4.4",
"@types/core-js": "0.9.35",
"@types/jasmine": "2.5.41",
"@types/node": "7.0.4",
"angular-in-memory-web-api": "0.2.4",
"angular2-template-loader": "0.6.0",
"codelyzer": "2.0.0-beta.4",
"core-js": "2.4.1",
"es6-shim": "0.35.3",
"flexboxgrid-sass": "8.0.5",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.26.0",
"istanbul": "0.4.5",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "2.5.2",
"json-loader": "0.5.4",
"karma": "1.4.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-source-map-support": "1.2.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.1",
"kss": "3.0.0-beta.17",
"node-sass": "4.2.0",
"normalize-scss": "6.0.0",
"phantomjs-prebuilt": "2.1.14",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.9",
"remap-istanbul": "0.7.0",
"rimraf": "2.5.4",
"rxjs": "5.0.3",
"sass-lint": "1.10.2",
"sass-loader": "4.1.1",
"skeleton-scss": "2.0.4",
"source-map-loader": "0.1.6",
"ts-helpers": "1.1.2",
"ts-loader": "1.3.3",
"tslint": "4.3.1",
"typedoc": "0.5.5",
"typescript": "2.1.5",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"webpack-md5-hash": "0.0.5",
"zone.js": "0.7.6"
}
}