-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.43 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
{
"name": "@nationalbankbelgium/code-style",
"version": "1.11.0",
"description": "Front-End code style",
"author": {
"email": "[email protected]",
"name": "Alexis Georges",
"url": "https://www.nbb.be"
},
"contributors": [
{
"email": "[email protected]",
"name": "Christopher Cortes",
"url": "https://github.com/christophercr"
}
],
"license": "MIT",
"homepage": "https://github.com/nationalbankbelgium/code-style",
"bugs": "https://github.com/nationalbankbelgium/code-style/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/NationalBankBelgium/code-style.git"
},
"keywords": [
"code-style",
"javascript",
"typescript",
"stylelint",
"prettier",
"tslint",
"codelyzer",
"tsconfig"
],
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "~14.14.31",
"codelyzer": "~6.0.2",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-customizable": "^7.0.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.0",
"pinst": "^3.0.0",
"prettier": "~3.1.0",
"release-it": "^17.0.1",
"stylelint": "~13.13.1",
"tslint": "~6.1.0",
"typescript": "~4.9.4"
},
"scripts": {
"build": "bash ./build.sh",
"build:trace": "npm run build -- --trace",
"clean": "npx rimraf dist",
"clean:modules": "npx rimraf ./node_modules package-lock.json",
"clean:slate": "npm run clean:modules && npm install",
"commit": "git-cz",
"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",
"prettier-check": "prettier \"**/*.{css,html,js,json,md,pcss,scss,ts,yml}\" --cache --write --html-whitespace-sensitivity strict",
"release": "release-it",
"release:publish": "bash ./release-publish.sh --trace",
"test": "bash ./test.sh"
},
"lint-staged": {
"*.{css,html,js,json,md,pcss,scss,ts,yml}": [
"prettier --cache --write --html-whitespace-sensitivity strict"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}