-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.71 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
{
"name": "@nationalbankbelgium/eslint-config",
"version": "16.0.0",
"description": "ESLint configuration used at the National Bank of Belgium",
"author": {
"email": "[email protected]",
"name": "Alexis Georges",
"url": "https://www.nbb.be"
},
"contributors": [
{
"email": "[email protected]",
"name": "Michael Henkens",
"url": "https://github.com/mhenkens"
}
],
"license": "MIT",
"homepage": "https://github.com/nationalbankbelgium/eslint-config",
"bugs": "https://github.com/nationalbankbelgium/eslint-config/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/NationalBankBelgium/eslint-config.git"
},
"keywords": [
"eslint",
"eslint-config"
],
"dependencies": {
"@angular-eslint/builder": "^16.3.1",
"@angular-eslint/eslint-plugin": "^16.3.1",
"@angular-eslint/eslint-plugin-template": "^16.3.1",
"@angular-eslint/schematics": "^16.3.1",
"@angular-eslint/template-parser": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-unicorn": "^52.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@nationalbankbelgium/code-style": "^1.8.0",
"@release-it/conventional-changelog": "^5.1.1",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.0.31",
"cz-customizable": "^7.0.0",
"husky": "^9.0.10",
"lint-staged": "^13.2.2",
"pinst": "~3.0.0",
"prettier": "~3.1.1",
"release-it": "^15.10.3"
},
"scripts": {
"build": "bash ./build.sh",
"clean": "npx rimraf dist",
"clean:modules": "npx rimraf ./node_modules package-lock.json",
"clean:slate": "npm run clean:modules && npm install",
"commit": "cz",
"format": "prettier \"**/*.{css,html,js,json,md,pcss,scss,ts,yml}\" --write --html-whitespace-sensitivity strict",
"generate:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"generate:changelog-recent": "conventional-changelog -p angular | tail -n +3",
"prepack": "pinst --disable",
"prepublishOnly": "pinst --disable",
"postinstall": "husky install",
"postpack": "pinst --enable",
"postpublish": "pinst --enable",
"release": "release-it",
"release:publish": "bash ./release-publish.sh --trace"
},
"lint-staged": {
"*.{css,html,js,json,md,pcss,scss,ts,yml}": [
"prettier --write --html-whitespace-sensitivity strict"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}