-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.85 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
{
"name": "ngx-formulus",
"version": "0.1.5",
"description": "NgxFormulus is an Angular library designed to simplify the creation of dynamic forms.",
"repository": {
"type": "git",
"url": "https://github.com/jabali2004/ngx-formulus.git"
},
"license": "Apache-2.0 License",
"author": {
"name": "jabali2004",
"url": "https://github.com/jabali2004"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"doc": "compodoc -p tsconfig.doc.json -s",
"build_example": "ng build ngx-formulus-example",
"build_lib": "ng build ngx-formulus",
"update_version": "cd projects/ngx-formulus && npm version patch",
"npm_pack": "cd dist/ngx-formulus && npm pack",
"package": "npm run build_lib && npm run npm_pack",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"dependencies": {
"@angular/animations": "^14.2.5",
"@angular/cdk": "^14.2.4",
"@angular/common": "^14.2.5",
"@angular/compiler": "^14.2.5",
"@angular/core": "^14.2.5",
"@angular/forms": "^14.2.5",
"@angular/localize": "^14.2.5",
"@angular/material": "^14.2.4",
"@angular/platform-browser": "^14.2.5",
"@angular/platform-browser-dynamic": "^14.2.5",
"@angular/router": "^14.2.5",
"@ng-bootstrap/ng-bootstrap": "^13.0.0",
"@popperjs/core": "^2.11.6",
"bootstrap": "^4.6.0",
"rxjs": "~7.5.1",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1402.5",
"@angular-devkit/build-angular": "^14.2.5",
"@angular-eslint/builder": "14.1.2",
"@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "14.1.2",
"@angular-eslint/schematics": "14.1.2",
"@angular-eslint/template-parser": "14.1.2",
"@angular/cli": "^14.2.5",
"@angular/compiler-cli": "^14.2.5",
"@compodoc/compodoc": "^1.1.16",
"@schematics/angular": "^13.3.1",
"@types/jasmine": "~4.0.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"jasmine-core": "~4.1.0",
"jshint": "^2.13.1",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^14.2.1",
"standard-version": "^9.3.2",
"typescript": "~4.6.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}