-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1006 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1006 Bytes
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
{
"name": "eslint-config-godaddy-typescript",
"version": "5.0.0",
"description": "ESLint config for consistent style in node projects using Typescript at GoDaddy.",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "pnpm run --silent lint",
"test": "echo ok",
"clean": "rimraf node_modules"
},
"repository": {
"type": "git",
"url": "git@github.com:godaddy/javascript.git",
"directory": "packages/eslint-config-godaddy-typescript"
},
"keywords": [
"godaddy",
"javascript",
"styleguide",
"style-guide",
"eslint",
"eslint-config",
"typescript"
],
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint-config-godaddy": "workspace:^"
},
"peerDependencies": {
"eslint": "^10",
"typescript": ">=5"
},
"devDependencies": {
"eslint": "^10.0.2"
},
"exports": {
".": "./index.js"
}
}