forked from chiefmikey/eslint-plugin-disable-autofix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.29 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "eslint-plugin-disable-autofix",
"version": "5.0.1",
"description": "Disable autofix for ESLint rules without turning them off",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json && sed -i '' -e 's/exports\\.default/module.exports/g' ./dist/index.js && sed -i '' -e 's/export default/export =/g' ./dist/index.d.ts",
"gh-build": "tsc -p tsconfig.build.json && sed -i -e 's/exports\\.default/module.exports/g' ./dist/index.js && sed -i -e 's/export default/export =/g' ./dist/index.d.ts",
"gh-test": "npm run gh-build && jest tests/v9",
"gh-test-v8": "npm run gh-build && jest tests/v8",
"major": "npm version major; cd dist && npm version major",
"minor": "npm version minor; cd dist && npm version minor",
"ncu": "ncu -u; cd dist && ncu -u;",
"node": "node dist/index.js",
"patch": "npm version patch; cd dist && npm version patch",
"publish": "cd dist && npm publish --access public",
"test": "npm run build && npm i ./dist && jest --config=jest.config.ts tests/v9",
"test:pin": "jest --config=jest.config.ts tests/v9"
},
"dependencies": {
"app-root-path": "^3.1.0",
"eslint": "^9.3.0",
"eslint-plugin-disable-autofix": "file:dist",
"eslint-rule-composer": "^0.3.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@types/eslint": "^8.56.10",
"@types/eslint__eslintrc": "^2.1.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"babel-jest": "^29.7.0",
"eslint-plugin-unicorn": "^53.0.0",
"jest": "^29.7.0",
"mikey-pro": "^7.5.2",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"homepage": "https://github.com/chiefmikey/eslint-plugin-disable-autofix",
"repository": "https://github.com/chiefmikey/eslint-plugin-disable-autofix",
"bugs": "https://github.com/chiefmikey/eslint-plugin-disable-autofix/issues",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint plugin",
"disable autofix",
"disable --fix",
"disable fix"
],
"author": "Mikl Wolfe <wolfe@mikl.io> (https://github.com/chiefmikey)",
"prettier": "@mikey-pro/prettier-config",
"eslintConfig": {
"extends": "@mikey-pro/eslint-config"
},
"stylelint": {
"extends": "@mikey-pro/stylelint-config"
}
}