-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
153 lines (153 loc) · 6.57 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "@nationalbankbelgium/ngx-form-errors",
"version": "2.0.1",
"description": "Display validation errors for Angular Reactive forms",
"author": "Stark Team <National Bank of Belgium>",
"contributors": [
{
"email": "[email protected]",
"name": "Christopher Cortes",
"url": "https://github.com/christophercr"
},
{
"email": "[email protected]",
"name": "Alexis Georges",
"url": "https://github.com/SuperITMan"
}
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NationalBankBelgium/ngx-form-errors.git"
},
"keywords": [
"angular12",
"angular13",
"reactive forms",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NationalBankBelgium/ngx-form-errors/issues"
},
"homepage": "https://github.com/NationalBankBelgium/ngx-form-errors",
"engines": {
"node": ">=18.17.1",
"npm": ">=10.1.0"
},
"devDependencies": {
"@angular/cli": "^16.2.15",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular-devkit/build-angular": "^16.2.15",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@compodoc/compodoc": "^1.1.23",
"@nationalbankbelgium/code-style": "^1.9.0",
"@nationalbankbelgium/eslint-config": "^16.0.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jasmine": "~3.8.2",
"@types/karma": "^6.3.1",
"ci-info": "^4.0.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"core-js": "^2.6.0",
"cz-customizable": "^7.0.0",
"husky": "^9.1.5",
"karma": "^6.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^15.2.0",
"ng-packagr": "^16.2.3",
"prettier": "~3.1.1",
"release-it": "^17.0.1",
"rimraf": "^5.0.10",
"rxjs": "^7.8.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"tslib": "~2.3.0",
"typescript": "~4.9.5",
"zone.js": "~0.13.3"
},
"peerDependencies": {
"@angular/common": "15.x || 16.x",
"@angular/core": "15.x || 16.x",
"@angular/forms": "15.x || 16.x",
"rxjs": "7.x"
},
"scripts": {
"build": "ng build -c production && cd dist && npm pack ./ --silent && cd ..",
"clean": "npx rimraf ./dist ./reports",
"clean:all": "npm run clean && npm run clean:demo:ng-previous && npm run clean:demo:ng-latest",
"clean:demo:ng-previous": "cd demo-app/ng15 && npm run clean && cd ..",
"clean:demo:ng-latest": "cd demo-app/ng16 && npm run clean && cd ..",
"clean:modules": "npx rimraf ./node_modules package-lock.json",
"clean:modules:all": "npm run clean:modules && npm run clean:modules:demo:ng-previous && npm run clean:modules:demo:ng-latest",
"clean:modules:demo:ng-previous": "cd demo-app/ng15 && npm run clean:modules && cd ..",
"clean:modules:demo:ng-latest": "cd demo-app/ng16 && npm run clean:modules && cd ..",
"clean:slate": "npm run clean:all && npm run clean:modules:all && npm run install:all",
"commit": "git-cz",
"demo:ng-previous": "cd demo-app/ng15 && npm start && cd ..",
"demo:ng-latest": "cd demo-app/ng16 && npm start && cd ..",
"docs": "npm run docs:clean && npm run docs:generate",
"docs:clean": "npx rimraf reports/api-docs",
"docs:coverage": "npm run docs:generate -- --coverageTest 85 --coverageTestThresholdFail true",
"docs:generate": "node ./node_modules/@compodoc/compodoc/bin/index-cli src",
"docs:serve": "npm run docs:generate -- --watch --serve --port 4321",
"docs:publish": "bash ./gh-deploy.sh --trace",
"generate:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"generate:changelog-recent": "conventional-changelog -p angular | tail -n +3",
"install:all": "npm install && npm run build && npm run install:demo:ng-previous && npm run install:demo:ng-latest",
"install:demo:ng-previous": "cd demo-app/ng15 && npm install && cd ..",
"install:demo:ng-latest": "cd demo-app/ng16 && npm install && cd ..",
"install:ci:demo:ng-previous": "npm run build && cd demo-app/ng15 && npm ci && cd ..",
"install:ci:demo:ng-latest": "npm run build && cd demo-app/ng16 && npm ci && cd ..",
"lint": "npm run lint-es && npm run lint-css",
"lint:all": "npm run lint && npm run lint:demo:ng-previous && npm run lint:demo:ng-latest",
"lint:demo:ng-previous": "cd demo-app/ng15 && npm run lint && cd ..",
"lint:demo:ng-latest": "cd demo-app/ng16 && npm run lint && cd ..",
"lint-es": "ng lint",
"lint-es:fix": "ng lint --fix",
"lint-css": "stylelint \"./src/**/*.?(pc|sc|c|sa)ss\" --formatter \"string\" --allow-empty-input",
"ng": "ng",
"ngc": "ngc",
"node": "node",
"prepare": "husky",
"prettier-check": "prettier \"**/*.{css,html,js,json,md,pcss,scss,ts,yml}\" --write --html-whitespace-sensitivity strict",
"release": "release-it",
"release:publish": "bash ./release-publish.sh --trace",
"stylelint-check": "stylelint-config-prettier-check",
"test": "ng test",
"test:all": "npm run test && npm run test:demo:ng-previous && npm run test:demo:ng-latest",
"test:demo:ng-previous": "cd demo-app/ng15 && npm run test",
"test:demo:ng-latest": "cd demo-app/ng16 && npm run test",
"test:ci": "ng test --watch=false --code-coverage",
"test:ci:all": "npm run test:ci && npm run test:ci:demo:ng-previous && npm run test:ci:demo:ng-latest",
"test:ci:demo:ng-previous": "cd demo-app/ng15 && npm run test:ci && cd ../..",
"test:ci:demo:ng-latest": "cd demo-app/ng16 && npm run test:ci && cd ../..",
"test:ci:coveralls": "cat ./reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"tsc": "tsc",
"update:demo:ng-previous": "npm run clean:demo:ng-previous && npx rimraf ./node_modules/@nationalbankbelgium && npm run install:demo:ng-previous",
"update:demo:ng-latest": "npm run clean:demo:ng-latest && npx rimraf ./node_modules/@nationalbankbelgium && npm run install:demo:ng-latest"
},
"lint-staged": {
"*.{css,html,js,json,md,pcss,scss,ts,yml}": [
"prettier --write --html-whitespace-sensitivity strict"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}