-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.22 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
{
"name": "ngx-breadcrumpy",
"description": "Awesome breadcrumbs for Angular",
"author": "Dirk Luijk <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/dirkluijk/ngx-breadcrumpy.git"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"commit": "git-cz",
"start": "ng serve demo",
"build": "ng build --project breadcrumpy --configuration production && yarn copy:readme",
"test": "ng test",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"copy:readme": "cp README.md dist/breadcrumpy",
"release": "standard-version && yarn build",
"release:minor": "standard-version --release-as minor && yarn build",
"release:major": "standard-version --release-as major && yarn build",
"prepare": "husky install",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"private": false,
"dependencies": {
"@angular/animations": "^17.0.8",
"@angular/common": "^17.0.8",
"@angular/compiler": "^17.0.8",
"@angular/core": "^17.0.8",
"@angular/forms": "^17.0.8",
"@angular/platform-browser": "^17.0.8",
"@angular/platform-browser-dynamic": "^17.0.8",
"@angular/router": "^17.0.8",
"rxjs": "~7.8.1",
"rxjs-etc": "^10.6.2",
"tslib": "^2.6.2",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-builders/jest": "^17.0.0",
"@angular-devkit/build-angular": "^17.0.9",
"@angular/cli": "^17.0.9",
"@angular/compiler-cli": "^17.0.8",
"@angular/language-service": "^17.0.8",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@dirkluijk/observable-matchers": "^0.3.2",
"@ngneat/spectator": "^16.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-jasmine2": "^29.7.0",
"ng-packagr": "^17.0.3",
"pinst": "^3.0.0",
"standard-version": "^9.5.0",
"ts-node": "~10.9.2",
"typescript": "~5.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}