This repository was archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.12 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.12 KB
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
{
"name": "dynamic-components",
"description": "Easier dynamic component injections in Angular 6+.",
"version": "3.0.3",
"license": "MIT",
"author": {
"name": "Pascal Iske",
"email": "info@pascaliske.dev",
"url": "https://pascaliske.dev"
},
"repository": {
"url": "https://github.com/pascaliske/dynamic-components.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/pascaliske/dynamic-components/issues"
},
"private": true,
"scripts": {
"ng": "ng",
"prepare": "husky install",
"start": "ng serve dynamic-components-demo",
"build": "ng build --configuration production",
"postbuild": "cp README.md dist/dynamic-components/README.md && cp LICENSE.md dist/dynamic-components/LICENSE.md && cp CHANGELOG.md dist/dynamic-components/CHANGELOG.md",
"format": "prettier --write \"{src,projects}/**/*.ts\"",
"version": "bump --yes package.json projects/dynamic-components/package.json",
"changelog": "standard-changelog",
"link": "yarn run build && cd dist/dynamic-components && yarn link",
"unlink": "cd dist/dynamic-components && yarn unlink"
},
"dependencies": {
"@angular/animations": "^13.3.10",
"@angular/common": "^13.3.10",
"@angular/compiler": "^13.3.10",
"@angular/core": "^13.3.10",
"@angular/forms": "^13.3.10",
"@angular/platform-browser": "^13.3.10",
"@angular/platform-browser-dynamic": "^13.3.10",
"@angular/router": "^13.3.10",
"core-js": "^3.26.0",
"rxjs": "^7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.9",
"@angular/cli": "~13.3.8",
"@angular/compiler-cli": "^13.3.10",
"@angular/language-service": "^13.3.11",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@rstacruz/bump-cli": "^2.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.9",
"codelyzer": "^6.0.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"ng-packagr": "^15.0.0",
"prettier": "^2.7.1",
"standard-changelog": "^3.0.0",
"ts-node": "~10.9.1",
"typescript": "~4.6.4"
}
}