-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 1.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "eslint-config-seegno",
"version": "17.0.0",
"description": "Seegno-flavored ESLint config",
"keywords": [
"config",
"eslint",
"lint",
"shared"
],
"homepage": "https://github.com/seegno/eslint-config-seegno#readme",
"bugs": {
"url": "https://github.com/seegno/eslint-config-seegno/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/seegno/eslint-config-seegno.git"
},
"license": "MIT",
"author": "Seegno",
"main": "src",
"scripts": {
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"lint": "eslint src/index.js test/index.js",
"lint-staged": "lint-staged",
"test": "jest",
"version": "npm run changelog --future-release=$npm_package_version && git add -A CHANGELOG.md"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"ignore": [
"test/fixtures/*.js"
],
"linters": {
"**/*.js": "eslint",
"package.json": [
"sort-package-json",
"git add"
]
}
},
"jest": {
"testRegex": "test/index.js"
},
"dependencies": {
"babel-eslint": "10.1.0",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-jest": "22.4.1",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-new-with-error": "2.0.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "4.5.0",
"eslint-plugin-sort-class-members": "1.4.0",
"eslint-plugin-sort-destructure-keys": "1.3.3",
"eslint-plugin-sort-imports-es6": "^0.0.3",
"eslint-plugin-sql-template": "^2.0.0",
"eslint-plugin-switch-case": "^1.1.2"
},
"devDependencies": {
"eslint": "6.8.0",
"jest": "^28.1.3",
"lint-staged": "^8.1.5",
"pre-commit": "^1.2.2",
"sort-package-json": "^1.22.1"
},
"peerDependencies": {
"eslint": "5 || 6"
},
"engines": {
"node": ">=12"
}
}