-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 919 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 919 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
{
"name": "@destination/eslint-config",
"version": "2.0.2",
"description": "Default ESLint config used by Destination",
"repository": {
"type": "git",
"url": "https://github.com/wearedestination/eslint-config.git"
},
"license": "MIT",
"author": "Andy Palmer <andy.palmer@wearedestination.com>",
"type": "module",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write"
},
"dependencies": {
"@eslint/js": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-unicorn": "^59.0.1",
"globals": "^16.2.0",
"typescript-eslint": "^8.35.0"
},
"devDependencies": {
"eslint": "^9.29.0",
"prettier": "^3.1.1"
},
"peerDependencies": {
"eslint": "^9.29.0"
}
}