-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.2 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
{
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/utils": "^7.10.0"
},
"description": "ESLint plugin for custom rules.",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ridedott/eslint-config": "^2.27.109",
"@types/jest": "^29.5.12",
"@types/node": "^18.18.2",
"commitizen": "^4.3.0",
"cspell": "^8.8.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lint-staged": "^15.2.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"files": [
"lib",
"documentation"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run husky:pre-commit"
}
},
"license": "UNLICENSED",
"lint-staged": {
"*.ts": [
"eslint"
],
"*.{json,md,ts,yml,yaml}": [
"prettier --write"
]
},
"main": "./lib/index.js",
"name": "@ridedott/eslint-plugin",
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:ridedott/eslint-plugin.git"
},
"scripts": {
"build": "run-s clean build:*",
"build:ts": "tsc --project tsconfig.production.json",
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
"clean": "rm -rf lib",
"cz": "git-cz",
"cz:retry": "git-cz --retry",
"format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'",
"format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'",
"husky:lint-staged": "lint-staged",
"husky:pre-commit": "run-p spellcheck husky:lint-staged",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint '**/*.ts' --fix",
"semantic-release": "semantic-release",
"spellcheck": "cspell '**/*'",
"test": "jest",
"test:ci": "jest --ci --collect-coverage --maxWorkers=12",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch --verbose false",
"types": "tsc --noEmit"
},
"version": "1.7.205"
}