-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "@supercharge/eslint-config-typescript",
"description": "A Shareable ESLint Config for Supercharge Projects using TypeScript",
"version": "4.0.2",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/eslint-config-typescript/issues"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@supercharge/eslint-config": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1"
},
"peerDependencies": {
"eslint": "8.x"
},
"devDependencies": {
"@japa/run-failed-tests": "~1.1.1",
"@japa/runner": "~2.5.1",
"@japa/spec-reporter": "~1.3.3",
"@supercharge/tsconfig": "^5.0.0",
"@types/eslint": "~8.56.5",
"eslint": "~8.57.0",
"expect": "~29.7.0",
"typescript": "^5.4.2"
},
"main": "dist/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/eslint-config-typescript",
"keywords": [
"supercharge",
"superchargejs",
"eslint",
"eslintconfig",
"eslint-config",
"eslint-config-supercharge",
"code style",
"typescript",
"typescript-eslint",
"nodejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/eslint-config-typescript.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run test:run",
"test:run": "node bin/test.js"
}
}