-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.71 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
65
66
67
68
69
70
71
72
{
"name": "eslint-bankruptcy",
"version": "1.1.0",
"description": "Codemod to eslint-disable all instances of a rule violation in a codebase",
"main": "index.js",
"repository": "[email protected]:NickHeiner/eslint-bankruptcy.git",
"author": "Nick Heiner <[email protected]>",
"license": "MIT",
"bin": {
"declare-eslint-bankruptcy": "./bin/index.js"
},
"keywords": [
"ast",
"command-line-tool",
"cli",
"utility",
"eslint"
],
"devDependencies": {
"@types/find-parent-dir": "^0.3.0",
"@types/hard-rejection": "2.0.0",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/mkdirp": "^0.5.2",
"@types/ncp": "^2.0.3",
"@types/node": "^13.1.2",
"@types/tmp": "^0.1.0",
"@types/yargs": "^13.0.4",
"eslint": "^6.8.0",
"eslint-config-nth": "^2.0.1",
"eslint-plugin-jest": "^23.2.0",
"globby": "^10.0.1",
"jest": "^24.9.0",
"tmp": "^0.1.0",
"typescript": "4.2.4",
"write-json-file": "4.3.0"
},
"dependencies": {
"execa": "5.0.0",
"find-parent-dir": "^0.3.0",
"hard-rejection": "2.1.0",
"load-json-file": "^6.2.0",
"lodash": "^4.17.15",
"nth-log": "2.0.1",
"resolve-from": "^5.0.0",
"yargs": "^15.1.0"
},
"scripts": {
"lint": "eslint index.js bin __tests__ --max-warnings 0",
"lint:fix": "yarn run lint --fix",
"typecheck": "yarn run tsc",
"test": "yarn run lint && yarn run typecheck && CI=true jest"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"rules": {
"no-console": "off",
"no-use-before-define": [
"error",
{
"functions": false
}
]
},
"extends": [
"nth"
]
}
}