forked from dirkluijk/ngx-typesafe-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 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
63
64
65
66
67
68
69
{
"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 --configuration production && yarn copy:docs",
"test": "ng test",
"lint": "ng lint",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"copy:docs": "cp ./*.md ./LICENSE dist/ngx-typesafe-forms",
"release": "cd projects/ngx-typesafe-forms && standard-version --infile ../../CHANGELOG.md && cd .. && yarn build"
},
"private": false,
"dependencies": {
"@angular/common": "~12.1.1",
"@angular/compiler": "~12.1.1",
"@angular/core": "~12.1.1",
"@angular/forms": "~12.1.1",
"@angular/platform-browser": "~12.1.1",
"@angular/platform-browser-dynamic": "~12.1.1",
"rxjs": "~6.6.3",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^10.0.1",
"@angular-devkit/build-angular": "~12.1.1",
"@angular/cli": "~12.1.1",
"@angular/compiler-cli": "~12.1.1",
"@angular/language-service": "~12.1.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@dirkluijk/observable-matchers": "^0.3.2",
"@dscheerens/tslint-presets": "^8.0.0",
"@ngneat/spectator": "^5.13.3",
"@types/jest": "^26.0.14",
"@types/node": "^14.10.3",
"all-contributors-cli": "^6.17.3",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"jest": "^26.0.0",
"ng-packagr": "^12.1.0",
"standard-version": "^9.0.0",
"ts-node": "~9.0.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}