forked from appliedblockchain/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
{
"name": "@beyonk/eslint-config",
"version": "9.1.1",
"description": "Eslint config for beyonk",
"main": "index.js",
"scripts": {
"lint": "eslint -c _self-lint.js .",
"lint:ci": "pnpm lint --format junit -o reports/junit/eslint-results.xml"
},
"repository": "beyonk/eslint-config",
"keywords": [
"eslint",
"config",
"eslint-config",
"beyonk"
],
"author": "Beyonk",
"license": "MIT",
"bugs": {
"url": "https://github.com/beyonk/eslint-config/issues"
},
"homepage": "https://github.com/beyonk/eslint-config#README.MD",
"dependencies": {
"@eslint/js": "^9.22.0",
"@vitest/eslint-plugin": "^1.3.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-svelte": "^3.1.0",
"globals": "^16.0.0",
"neostandard": "^0.12.1",
"svelte": "^5.22.6"
},
"devDependencies": {
"eslint": "^9.21.0",
"eslint-formatter-junit": "^8.40.0"
},
"peerDependencies": {
"eslint": "^9.21.0"
},
"packageManager": "pnpm@10.4.1",
"type": "module",
"exports": {
"./recommended": "./default.js",
"./mocha": "./mocha.js",
"./node": "./node.js",
"./vitest": "./vitest.js",
"./svelte": "./svelte.js",
"./sapper": "./sapper.js",
"./constants": "./constants.js"
}
}