-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
41
42
43
44
45
46
47
48
49
50
{
"name": "eslint-focus",
"version": "1.4.0",
"type": "commonjs",
"license": "MIT",
"bin": "./bin/eslint-focus.js",
"peerDependencies": {
"eslint": "^8.0.0"
},
"scripts": {
"format": "yarn prettier --write .",
"format:check": "yarn prettier --check .",
"release": "yarn changeset publish",
"test:lint": "eslint --ignore-path .prettierignore --max-warnings 0 --report-unused-disable-directives bin",
"test:types": "tsc -p tsconfig.json --noEmit",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"packageManager": "yarn@3.2.3",
"volta": {
"node": "18.10.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@types/eslint": "^8.40.2",
"@types/node": "^18.7.23",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^29.5.0",
"prettier": "^2.7.1",
"tempy": "^3.0.0",
"typescript": "^5.1.3"
},
"prettier": {
"useTabs": true
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/eps1lon/eslint-focus.git"
},
"dependencies": {
"yargs": "^17.7.2"
}
}