forked from shlinkio/js-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 KB
/
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
36
37
38
39
40
{
"name": "@shlinkio/eslint-config-js-coding-standard",
"description": "Coding standard used by shlink JavaScript projects",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/shlinkio/js-coding-standard.git"
},
"keywords": [
"eslint",
"lint",
"typescript",
"coding-standard"
],
"author": "Alejandro Celaya <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shlinkio/js-coding-standard/issues"
},
"homepage": "https://github.com/shlinkio/js-coding-standard",
"scripts": {
"build": "mkdir -p dist && rm -rf dist/* && cp index.js dist"
},
"peerDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"eslint": "^9.10.0 || ^8.57.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^5.0.0 || ^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"typescript-eslint": "^8.0"
},
"devDependencies": {
"typescript": "^5.6.3"
},
"files": [
"dist"
]
}