-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "lintier",
"version": "3.3.0",
"description": "Setup ESLint & Prettier in TypeScript projects.",
"main": "./bin/index.js",
"scripts": {
"build": "rimraf ./bin && tsc",
"start": "npm run build && node bin/index.js",
"restart": "node bin/index.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"e2e-build": "docker build -f 'e2e.Dockerfile' -t lintier-e2e:latest '.'",
"e2e-run": "docker run --rm -i lintier-e2e:latest",
"e2e": "npm run e2e-build && npm run e2e-run",
"update-pinned-versions": "tsx updatePinnedVersions.ts"
},
"bin": {
"lintier": "bin/index.js"
},
"files": [
"/bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/josh-stillman/lintier.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/josh-stillman/lintier/issues"
},
"homepage": "https://github.com/josh-stillman/lintier#readme",
"dependencies": {
"chalk": "4.1.1",
"commander": "6.2.0",
"execa": "4.1.0",
"inquirer": "7.3.3",
"ora": "5.1.0",
"prettier": "3.3.3",
"terminal-link": "2.1.1"
},
"devDependencies": {
"@eslint/js": "9.10.0",
"@types/eslint__js": "8.42.3",
"@types/commander": "2.12.2",
"@types/inquirer": "7.3.1",
"@types/jest": "29.5.14",
"@types/node": "22.5.5",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.9.0",
"jest": "29.7.0",
"rimraf": "3.0.2",
"ts-jest": "29.2.5",
"tsx": "4.19.1",
"typescript": "5.6.2",
"typescript-eslint": "8.6.0"
}
}