-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.85 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
{
"name": "angular-lib-starter-pack",
"version": "7.2.0",
"description": "Angular Starter Lib Pack For Angular 2 (and beyond) Libraries",
"repository": {
"type": "git",
"url": "https://github.com/vyakymenko/angular-lib-starter-pack.git"
},
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:umd",
"build:esm": "gulp inline-templates && npm run ngcompile",
"build:esm:watch": "gulp build:esm:watch",
"build:umd": "webpack --config webpack.umd.config.ts --mode production",
"build:umd:watch": "npm run build:umd -- --watch",
"build:watch": "concurrently --raw \"npm run build:umd:watch\" \"npm run build:esm:watch\"",
"ci.test": "npm run clean && npm run lint && npm run build && npm run docs",
"clean": "rimraf coverage dist tmp docs",
"docs": "compodoc -p tsconfig.json -d docs --disableCoverage",
"explore": "source-map-explorer ./dist/index.umd.js",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"lint": "tslint 'src/**/*.ts'",
"ngcompile": "node_modules/.bin/ngc -p tsconfig-aot.json",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run ci"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"keywords": [
"angular",
"aot",
"aot-compatible",
"aot-compilation",
"library",
"ng",
"seed",
"starter",
"typescript"
],
"author": "Valentyn Yakymenko <vyakymenko>",
"license": "MIT",
"homepage": "https://github.com/vyakymenko/angular-lib-starter-pack#readme",
"dependencies": {},
"peerDependencies": {
"@angular/common": "7.2.0",
"@angular/core": "7.2.0"
},
"devDependencies": {
"@angular/common": "7.2.0",
"@angular/compiler": "7.2.0",
"@angular/compiler-cli": "7.2.0",
"@angular/core": "7.2.0",
"@angular/platform-browser": "7.2.0",
"@angular/platform-browser-dynamic": "7.2.0",
"@compodoc/compodoc": "^1.1.6",
"@types/node": "^12.0.0",
"@types/webpack": "^4.4.19",
"@types/webpack-env": "^1.13.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^5.2.0",
"codecov": "^3.0.0",
"codelyzer": "^4.1.0",
"concurrently": "^4.0.0",
"css-loader": "^2.0.0",
"gh-pages": "^2.0.0",
"gulp": "4.0.1",
"gulp-inline-ng2-template": "^5.0.0",
"istanbul-instrumenter-loader": "^3.0.0",
"json-loader": "^0.5.4",
"natives": "^1.1.6",
"node-sass": "^4.10.0",
"raw-loader": "^2.0.0",
"rimraf": "^2.6.1",
"rxjs": "^6.3.3",
"sass-loader": "^7.0.0",
"source-map-explorer": "^1.3.3",
"to-string-loader": "^1.1.5",
"ts-node": "^8.0.2",
"tslint": "^5.9.1",
"typescript": "~3.2.2",
"webpack": "4.31.0",
"webpack-angular-externals": "^1.0.2",
"webpack-cli": "3.3.2",
"webpack-rxjs-externals": "^2.0.0",
"zone.js": "0.8.29"
}
}