-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.36 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
98
99
100
101
{
"name": "ngx-suspense-of",
"version": "2.3.0",
"author": {
"name": "Dominik Hladík",
"email": "[email protected]",
"url": "https://github.com/Celtian"
},
"private": false,
"license": "MIT",
"description": "Angular directive that adds suspense to your app",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:demo": "ng build demo --configuration production",
"build": "ng build ngx-suspense-of --configuration production",
"watch": "ng build ngx-suspense-of --watch",
"test": "ng test",
"test:jest": "jest",
"lint": "ng lint",
"script:create-version": "yarn tsx ./scripts/create-version.ts",
"script:sync-projects": "yarn tsx ./scripts/sync-projects.ts",
"script:gpr-setup": "yarn tsx ./scripts/gpr-setup.ts",
"postinstall": "yarn script:create-version",
"prepare": "husky",
"version": "yarn script:sync-projects && git add projects/ngx-suspense-of/ && auto-changelog -p && git add CHANGELOG.md",
"postversion": "git push && git push --follow-tags",
"publish:beta": "yarn && yarn build && npm publish --folder dist --tag beta",
"release:beta": "npm version prerelease -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \"",
"fix-vulnerabilities": "npx yarn-audit-fix && npx browserslist --update-db"
},
"dependencies": {
"@angular/animations": "^19.0.1",
"@angular/common": "^19.0.1",
"@angular/compiler": "^19.0.1",
"@angular/core": "^19.0.1",
"@angular/forms": "^19.0.1",
"@angular/platform-browser": "^19.0.1",
"@angular/platform-browser-dynamic": "^19.0.1",
"@angular/router": "^19.0.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.2",
"@angular/cli": "^19.0.2",
"@angular/compiler-cli": "^19.0.1",
"@angular/language-service": "^19.0.1",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-angular": "^19.6.0",
"@jscutlery/swc-angular-preset": "^0.3.0",
"@jscutlery/swc-plugin-angular": "^0.11.0",
"@swc/core": "~1.4.0",
"@swc/jest": "^0.2.37",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"angular-eslint": "^18.4.2",
"auto-changelog": "^2.5.0",
"eslint": "^9.15.0",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-preset-angular": "^14.4.1",
"lint-staged": "^15.2.10",
"ng-packagr": "^19.0.1",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.16.0"
},
"peerDependencies": {},
"homepage": "https://github.com/Celtian/ngx-suspense-of",
"repository": {
"url": "git+https://github.com/Celtian/ngx-suspense-of.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/Celtian/ngx-suspense-of/issues"
},
"keywords": [
"angular",
"ngx",
"suspense"
],
"files": [
"dist"
],
"engines": {
"node": ">=22 <24",
"npm": "please-use-yarn"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}