-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·96 lines (96 loc) · 3.08 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
{
"name": "ngx-element-boundary",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/gund/ngx-element-boundary.git"
},
"scripts": {
"ng": "ng",
"ct": "git-cz",
"start": "ng serve ngx-element-boundary",
"build": "ng build ngx-element-boundary",
"test": "ng test ngx-element-boundary",
"test:watch": "npm run test -- --watch",
"test:ci": "npm run test -- --runInBand --coverage",
"test:report": "cd coverage/ngx-element-boundary && codecov",
"lint": "ng lint ngx-element-boundary",
"e2e": "ng e2e",
"format": "prettier --write \"**/*.{ts,js,json,?css,html}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,?css,html}\"",
"pack": "copyfiles LICENSE README.md CODE_OF_CONDUCT.md CHANGELOG.md dist/ngx-element-boundary",
"semantic-release": "semantic-release"
},
"dependencies": {
"@angular/animations": "^14.0.5",
"@angular/common": "^14.0.5",
"@angular/compiler": "^14.0.5",
"@angular/core": "^14.0.5",
"@angular/elements": "^14.0.5",
"@angular/forms": "^14.0.5",
"@angular/platform-browser": "^14.0.5",
"@angular/platform-browser-dynamic": "^14.0.5",
"@angular/router": "^14.0.5",
"rxjs": "~7.5.5",
"tslib": "^2.4.0",
"zone.js": "~0.11.6"
},
"devDependencies": {
"@angular-builders/jest": "^14.0.0",
"@angular-devkit/build-angular": "^14.0.5",
"@angular-eslint/builder": "^14.0.0",
"@angular-eslint/eslint-plugin": "^14.0.0",
"@angular-eslint/eslint-plugin-template": "^14.0.0",
"@angular-eslint/schematics": "^14.0.0",
"@angular-eslint/template-parser": "^14.0.0",
"@angular/cli": "^14.0.5",
"@angular/compiler-cli": "^14.0.5",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"codecov": "^3.8.2",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.19.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.1",
"jasmine-core": "~4.2.0",
"jasmine-spec-reporter": "~7.0.0",
"jest": "~28.1.2",
"ng-packagr": "^14.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"ts-node": "~10.8.2",
"typescript": "~4.6.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{ts,js,json,?css,html}": [
"prettier --write"
]
}
}