-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 933 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 933 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
{
"name": "eslint-config-godaddy",
"version": "8.0.2",
"description": "Base ESLint config for consistent style in ES6 projects at GoDaddy.",
"license": "MIT",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm 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"
},
"keywords": [
"godaddy",
"javascript",
"styleguide",
"style-guide",
"eslint"
],
"peerDependencies": {
"eslint": "^9"
},
"dependencies": {
"eslint-plugin-jsdoc": "^55.0.3",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^16.0.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"eslint": "^9.24.0"
},
"exports": {
".": "./index.js"
}
}