-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "eslint-plugin-siren",
"version": "2.4.6",
"description": "Provides custom eslint rules developed by Siren",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sirensolutions/eslint-plugin.git"
},
"keywords": [
"eslint",
"siren"
],
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-plugin-eslint-plugin": "^5.0.0",
"husky": "^4.3.0",
"jest": "^28.0.0",
"typescript": ">=4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && yarn run test"
}
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-mocha": "^10.0.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"sync-request": "^6.1.0",
"typescript": ">=4.0.0"
},
"packageManager": "yarn@3.8.2"
}