forked from gund/ng-dynamic-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.8 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
{
"name": "ng-dynamic-component",
"version": "0.0.0",
"scripts": {
"ct": "git-cz",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test:watch": "npm run test -- --watch",
"test:ci": "npm run test -- --runInBand --coverage",
"test:report": "codecov -p coverage/ng-dynamic-component --disable=gcov",
"lint": "ng lint",
"e2e": "ng e2e",
"coverage:check": "istanbul check-coverage --functions 75 --lines 75 --branches 75 --statements 75 coverage/**/coverage*.json",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier \"**/*.{ts,js,json,?css,html}\"",
"pack": "copyfiles LICENSE README.md CODE_OF_CONDUCT.md CHANGELOG.md dist/ng-dynamic-component",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/common": "^12.2.13",
"@angular/compiler": "^12.2.13",
"@angular/core": "^12.2.13",
"@angular/platform-browser": "^12.2.13",
"@angular/platform-browser-dynamic": "^12.2.13",
"rxjs": "^7.0.1",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^12.1.2",
"@angular-devkit/build-angular": "^12.2.13",
"@angular/cli": "^12.2.13",
"@angular/compiler-cli": "^12.2.13",
"@angular/language-service": "^12.2.13",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.0.0",
"@types/node": "^16.11.11",
"codecov": "^3.8.3",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"core-js": "^3.19.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"istanbul": "^0.4.5",
"jest": "^27.0.0",
"jest-preset-angular": "^11.0.1",
"lint-staged": "^12.1.2",
"ng-packagr": "^12.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"semantic-release": "^18.0.1",
"ts-node": "^10.4.0",
"tslint": "~6.1.3",
"typescript": "~4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
100
],
"footer-max-line-length": [
1,
"always",
100
]
}
},
"lint-staged": {
"**/*.{ts,js,json,?css,html}": [
"prettier --write"
]
}
}