-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1002 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
36
{
"name": "@oursky/eslint-plugin",
"version": "15.0.1",
"main": "dist/index.cjs",
"repository": "[email protected]:oursky/eslint-oursky.git",
"author": "<[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "rollup --config",
"prepublishOnly": "npm run format && npm run test",
"test": "npm run build && cd test && npm ci && npm test",
"format": "prettier --write --list-different 'src/**/*.{cjs,mjs,js,jsx,ts,tsx}'"
},
"files": [
"dist"
],
"dependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-sonarjs": "^2.0.3",
"eslint-plugin-tsdoc": "^0.3.0",
"typescript-eslint": "^8.8.0"
},
"devDependencies": {
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"eslint": "^9.12.0"
}
}