-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.26 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": "eslint-plugin-caleb",
"version": "11.0.0",
"description": "Caleb Eby's shareable ESLint configuration",
"author": "Caleb Eby <caleb.eby01@gmail.com>",
"homepage": "https://github.com/calebeby/eslint-config",
"bugs": "https://github.com/calebeby/eslint-config/issues",
"license": "MIT",
"main": "index.js",
"repository": "calebeby/eslint-config",
"keywords": [
"eslint",
"eslintconfig"
],
"files": [
"dist"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-unicorn": "21.0.0"
},
"devDependencies": {
"@babel/core": "7.11.4",
"@babel/plugin-transform-shorthand-properties": "7.10.4",
"@changesets/changelog-github": "0.2.7",
"@changesets/cli": "2.11.1",
"@rollup/plugin-babel": "5.2.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@shopify/eslint-plugin": "37.0.1",
"babel-plugin-un-cjs": "2.2.0",
"eslint": "7.11.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-config-xo": "0.32.1",
"prettier": "2.1.2",
"rollup": "2.26.5",
"rollup-plugin-prettier": "2.1.0",
"rollup-plugin-terser": "7.0.0",
"typescript": "3.9.7"
},
"peerDependencies": {
"eslint": "^7.0.0",
"prettier": ">=1"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"scripts": {
"check-lint": "eslint . && prettier --check .",
"lint": "eslint --fix . && prettier --write .",
"build": "rollup -c rollup.config.js && node build.js",
"build:config": "node build.js",
"changeset": "changeset",
"version": "changeset version && prettier --write .",
"release": "npm run build && changeset publish"
},
"eslintConfig": {
"extends": [
"plugin:caleb/recommended",
"plugin:caleb/preact"
]
},
"eslintIgnore": [
"dist"
],
"engines": {
"node": ">=12.0.0"
}
}