-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
{
"name": "@therealklanni/eslint-config",
"version": "1.0.0-6",
"description": "Shareable ESLint config",
"author": "Kevin Lanni <therealklanni@gmail.com> (https://github.com/therealklanni)",
"license": "MIT",
"main": "index.js",
"scripts": {
"@deps": "/usr/bin/env bash ./scripts/dev-deps.sh",
"postinstall": "/usr/bin/env bash ./scripts/postinstall.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish",
"release:pre": "standard-version --prerelease",
"postrelease:pre": "git push --follow-tags origin master && npm publish --tag prerelease"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged --verbose --pattern '**/*.{json,md,y{a}ml}' && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"eslintConfig": {
"extends": [
"./node",
"./prettier"
]
},
"eslintIgnore": [
"test.js"
],
"prettier": "@therealklanni/prettier-config",
"keywords": [
"eslint",
"eslintconfig",
"eslint-config",
"therealklanni"
],
"repository": {
"type": "git",
"url": "git+https://github.com/therealklanni/eslint-config.git"
},
"bugs": {
"url": "https://github.com/therealklanni/eslint-config/issues"
},
"homepage": "https://github.com/therealklanni/eslint-config#readme",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.4"
},
"optionalDependencies": {
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@therealklanni/commitlint-config": "^0.1.0",
"@therealklanni/prettier-config": "^1.0.0",
"eslint": "^7.27.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"standard-version": "^9.0.0"
}
}