-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.03 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
{
"name": "@zazen/eslint-config",
"version": "6.3.0",
"description": "Lint JavaScript, free of weariness and confusion",
"keywords": [
"eslint-config",
"xo"
],
"homepage": "https://github.com/stormwarning/zazen-eslint-config",
"repository": "stormwarning/zazen-eslint-config",
"license": "ISC",
"author": "Jeff (https://tidaltheory.io)",
"files": [
"index.js",
"node.js",
"typescript.js"
],
"scripts": {
"changeset": "changeset add",
"lint": "eslint .",
"prepare": "husky install",
"release": "changeset publish",
"test": "ava"
},
"lint-staged": {
"*.{js,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"package.json": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@rushstack/eslint-patch": "1.2.0",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint-config-prettier": "8.7.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "0.56.0",
"eslint-plugin-etc": "2.0.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-prefer-let": "3.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "46.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"ava": "5.2.0",
"eslint": "8.36.0",
"husky": "8.0.3",
"is-plain-obj": "4.1.0",
"lint-staged": "13.2.0",
"prettier": "2.8.4",
"prettier-plugin-packagejson": "2.4.3"
},
"peerDependencies": {
"eslint": ">=8.23.1",
"prettier": ">=2"
},
"engines": {
"node": ">=16"
},
"changelog": {
"repo": "stormwarning/zazen-eslint-config",
"labels": {
"breaking": "💣 Breaking Change",
"removed": "🗑️ Removed",
"deprecated": "🚚 Deprecated",
"changed": "♻️ Changed",
"added": "🎁 Added",
"fixed": "🐛 Fixed",
"security": "🔒 Security"
}
}
}