-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.98 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.98 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
{
"name": "ngx-typesafe-forms",
"description": "Because FormControl<T> is more awesome than FormControl",
"author": "Dirk Luijk <mail@dirkluijk.nl>",
"repository": {
"type": "git",
"url": "https://github.com/dirkluijk/ngx-typesafe-forms.git"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"commit": "git-cz",
"start": "ng serve demo",
"build": "ng build ngx-typesafe-forms --configuration production && yarn copy:docs",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"copy:docs": "cp ./*.md ./LICENSE dist/ngx-typesafe-forms",
"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/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",
"rxjs": "~7.8.1",
"tslib": "^2.5.3",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@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": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@dirkluijk/observable-matchers": "^0.3.2",
"@types/node": "^20.2.5",
"all-contributors-cli": "^6.26.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"ng-packagr": "^17.0.3",
"pinst": "^3.0.0",
"standard-version": "^9.5.0",
"ts-node": "~10.9.1",
"typescript": "~5.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}