-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 838 Bytes
/
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
{
"name": "eslint-config-mourner",
"version": "4.0.1",
"description": "A strict ESLint config for my JavaScript projects",
"main": "eslint.config.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mourner/eslint-config-mourner.git"
},
"keywords": [
"eslint",
"config"
],
"author": "Vladimir Agafonkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/mourner/eslint-config-mourner/issues"
},
"homepage": "https://github.com/mourner/eslint-config-mourner#readme",
"devDependencies": {
"eslint": "^9.6.0"
},
"eslintConfig": {
"extends": "./index.js"
},
"scripts": {
"test": "eslint eslint.config.js"
},
"dependencies": {
"@eslint/js": "^9.6.0",
"@stylistic/eslint-plugin-js": "^2.3.0",
"globals": "^15.8.0"
}
}