-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
{
"name": "eslint-config-leankit",
"version": "8.0.0",
"type": "module",
"description": "ESLint rules for LeanKit",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha spec/*.js",
"test:only": "NODE_ENV=test mocha -R progress 'spec/**/*.spec.js'",
"watch:test": "mocha -w spec/*.js",
"lint": "eslint . --fix",
"find-new-rules": "eslint-find-rules --unused ./all.js",
"prepush": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeanKit-Labs/eslint-config-leankit.git"
},
"keywords": [
"lint",
"eslint",
"leankit"
],
"author": "LeanKit",
"contributors": [
{
"name": "Elijah Manor"
},
{
"name": "Bob Yexley"
},
{
"name": "JD Courtoy"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LeanKit-Labs/eslint-config-leankit/issues"
},
"homepage": "https://github.com/LeanKit-Labs/eslint-config-leankit#readme",
"devDependencies": {
"chai": "^5.2.0",
"eslint-find-rules": "^5.0.0",
"mocha": "^11.1.0"
},
"dependencies": {
"eslint": "^9.23.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0"
}
}