-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 943 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
37
{
"author": "David Walsh <5778036+rhinodavid@users.noreply.github.com>",
"bin": {
"eslint-fix-me": "./__build__/main.js"
},
"dependencies": {
"commander": "12.0.0",
"eslint": "9.2.0",
"graceful-fs": "4.2.11"
},
"description": "Disable eslint line-by-line after migrating to eslint",
"devDependencies": {
"@types/clear": "0.1.4",
"@types/eslint": "8.56.10",
"@types/figlet": "1.5.8",
"@types/graceful-fs": "4.1.9",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"eslint-config-prettier": "9.1.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"files": [
"__build__",
"src"
],
"license": "MIT",
"main": "./__build__/main.js",
"name": "eslint-fix-me",
"private": false,
"scripts": {
"build": "tsc -p .",
"start": "node --loader ts-node/esm src/main.ts"
},
"version": "1.0.2"
}