-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.66 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
{
"name": "eslint-plugin-always",
"version": "0.0.0-development",
"description": "ESLint plugin that always reports with configurable message",
"main": "dist/index.js",
"author": "Jens Simon",
"license": "MIT",
"homepage": "https://github.com/jenssimon/eslint-plugin-always#readme",
"repository": {
"type": "git",
"url": "https://github.com/jenssimon/eslint-plugin-always.git"
},
"type": "commonjs",
"files": [
"dist",
"LICENSE",
"README.md"
],
"types": "dist/index.d.ts",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@jenssimon/eslint-config-base": "^8.0.0",
"@jenssimon/eslint-config-typescript": "^5.2.2",
"@types/eslint": "^9.0.0",
"@types/node": "^22.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.52.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"eslint": ">=1.0.0"
},
"scripts": {
"lint": "eslint ./",
"build": "tsc",
"prepublishOnly": "tsc",
"commit": "cz",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
]
}
}