-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "@rusticisoftware/eslint-config",
"version": "4.0.0",
"description": "eslint configuration used by Rustici Software (mostly)",
"main": "index.js",
"scripts": {
"test": "npm run test:generate && node tests/run-rule-tests.js",
"test:verbose": "npx mocha tests/lib/**/*.js --reporter spec",
"test:style": "npx mocha tests/lib/style/*.js",
"test:lint": "npx mocha tests/lib/lint/*.js",
"test:generate": "node tests/generate-rule-tests.js"
},
"keywords": [
"eslint",
"eslintconfig"
],
"author": "Support <support@rusticisoftware.com>",
"license": "ISC",
"peerDependencies": {
"@eslint/js": ">=10",
"@stylistic/eslint-plugin": ">=5",
"eslint": ">=10",
"eslint-plugin-jsdoc": ">=62",
"eslint-plugin-n": ">=17",
"typescript-eslint": ">=8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"eslint": "^10.0.2",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-n": "^17.24.0",
"mocha": "^11.7.5",
"typescript-eslint": "^8.56.1"
}
}