-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "@weiran.zsd/multi-eslint-rule-config",
"version": "0.0.6",
"private": false,
"description": "Allows you to configure the same ESLint rule multiple times.",
"keywords": [
"node.js",
"node",
"esm"
],
"license": "MIT",
"author": "唯然<[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/weiran-zsd/multi-config-eslint-rules"
},
"type": "commonjs",
"exports": "./lib/mod.js",
"types": "./lib/mod.d.ts",
"files": [
"LICENSE",
"README.md",
"lib",
"!**/*.test.{js,ts}"
],
"scripts": {
"lint": "eslint .",
"prepare": "husky",
"prettier": "prettier -w lib",
"release": "npm test && standard-version",
"test": "node --test",
"test:watch": "node --test --watch",
"test:coverage": "node --test --experimental-test-coverage"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-plugin-n": "^17.11.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"standard-version": "^9.3.0"
},
"peerDependencies": {
"eslint": ">=8.57.1"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}