-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.4 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@searchspring/eslint-config",
"description": "Our style",
"version": "2.0.0",
"author": "Eric Hacke",
"bugs": {
"url": "https://github.com/searchspring/eslint-config/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^43.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.1.0",
"@searchspring/prettier": "^1.0.2",
"commitizen": "^4.2.5",
"commitlint": "^17.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.0",
"fixpack": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^13.0.3",
"prettier": "^2.0.5",
"standard-version": "^9.5.0"
},
"files": [
"*.js",
"!scratch.*"
],
"homepage": "https://github.com/searchspring/eslint-config#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"keywords": [
"eslint",
"lint",
"searchspring"
],
"license": "MIT",
"lint-staged": {
"./package.json": [
"fixpack",
"prettier --write"
],
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
]
},
"main": "index.js",
"peerDependencies": {
"eslint": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/searchspring/eslint-config.git"
},
"scripts": {
"beta": "npm version prerelease && npm publish",
"commit": "cz",
"format": "prettier --write \"**/*.{js,ts,json}\"",
"lint": "fixpack && npm run format && eslint --fix \"**/*.{js,ts}\"",
"major": "npm version major && npm publish",
"minor": "npm version minor && npm publish",
"patch": "npm version patch && npm publish",
"postpublish": "git push",
"prepare": "fixpack && npm run format",
"preversion": "npm run lint",
"test": "echo \"Error: no test specified\" && exit 1"
}
}