-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
41 lines (41 loc) · 907 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
38
39
40
41
{
"name": "eslint-config-godaddy",
"version": "8.0.0",
"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": "[email protected]:godaddy/javascript.git",
"directory": "packages/eslint-config-godaddy"
},
"keywords": [
"godaddy",
"javascript",
"styleguide",
"style-guide",
"eslint"
],
"peerDependencies": {
"eslint": "^9"
},
"dependencies": {
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-mocha": "^10.5.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0"
},
"exports": {
".": "./index.js"
}
}