-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "eslint-config-adslot",
"version": "1.9.0",
"description": "ESLint configuration for Adslot",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Adslot/eslint-config-adslot.git"
},
"author": "Adslot",
"engines": {
"node": "^22"
},
"keywords": [
"ESLint",
"eslint-config-adslot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Adslot/eslint-config-adslot/issues"
},
"homepage": "https://github.com/Adslot/eslint-config-adslot#readme",
"scripts": {
"postversion": "git push -u origin $(git rev-parse --abbrev-ref HEAD) --follow-tags && npm publish && echo '…released.'",
"preversion": "echo 'Releasing…' && npm ci",
"release:major": "npm version major -m 'build: release major version %s'",
"release:minor": "npm version minor -m 'build: release minor version %s'",
"release:patch": "npm version patch -m 'build: release patch version %s'"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"confusing-browser-globals": "^1.0.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-no-snapshot-testing": "^1.0.61",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2"
},
"peerDependencies": {
"eslint": "^8.57.1"
}
}