-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
51
52
{
"name": "@socifi/eslint-config",
"version": "2.10.2",
"description": "Shared ESLint config used in SOCIFI",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/socifi/eslint-config.git"
},
"bugs": {
"url": "https://github.com/socifi/eslint-config/issues"
},
"homepage": "https://github.com/socifi/eslint-config",
"author": "Michal Ozogán <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"eslint",
"eslint-config",
"eslintconfig"
],
"scripts": {
"lint": "eslint *.js --config index.js",
"test": "node node_modules/jest/bin/jest.js",
"test-and-lint": "npm run test && npm run lint",
"release": "semantic-release"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-array-func": "^3.1.3",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-sonarjs": "^0.4.0",
"eslint-plugin-unicorn": "^12.1.0",
"typescript": "^3.6.4"
},
"devDependencies": {
"@socifi/commitlint-config": "^1.1.0",
"@socifi/semantic-release-config": "^1.0.1",
"husky": "^3.0.9",
"jest": "^24.9.0"
}
}