-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 934 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 934 Bytes
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": "@js-soft/eslint-config-ts",
"description": "j&s-soft typescript linting rules",
"repository": "github:js-soft/ts-linting",
"license": "MIT",
"author": "j&s-soft AG",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"base.js",
"index.d.ts",
"index.js",
"jest.js",
"mocha.js",
"withFormatting.js"
],
"scripts": {
"test": "cd test && npm i && npx eslint index.ts && cd .."
},
"dependencies": {
"@eslint/js": "^9.37.0",
"eslint-plugin-chai-expect": "^4.0.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-mocha": "^11.2.0",
"typescript-eslint": "^8.46.1"
},
"peerDependencies": {
"eslint": ">=9"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}