-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "eslint-plugin-6river",
"version": "0.0.0-development",
"description": "set of 6river eslint plugins",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"repository": "6RiverSystems/eslint-plugin-6river",
"license": "ISC",
"author": "Nick Chistyakov",
"type": "module",
"main": "lib/index.js",
"scripts": {
"prettier": "prettier -w .",
"test": "mocha tests --recursive"
},
"dependencies": {
"@eslint/js": "~9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "~28.9.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"typescript-eslint": "~8.15.0"
},
"devDependencies": {
"@6river/commitlint-config-6river": "2.3.4",
"@6river/prettier-config": "1.2.28",
"@commitlint/cli": "^17.8.0",
"commitlint": "^19.5.0",
"eslint": "^9.13.0",
"husky": "^8.0.3",
"mocha": "^10.7.3",
"prettier": "^3.0.0",
"prettier-plugin-packagejson": "^2.5.3",
"pretty-quick": "^4.0.0",
"typescript": "5.6.3"
},
"peerDependencies": {
"eslint": "^9.13.0"
},
"engines": {
"node": ">=20.15.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}