forked from zazuko/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "@tpluscode/eslint-config",
"version": "0.5.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky",
"test": "eslint .",
"release": "changeset publish"
},
"peerDependencies": {
"eslint": ">=6",
"eslint-config-standard": ">=11",
"eslint-plugin-import": ">=2",
"eslint-plugin-n": ">=15",
"eslint-plugin-node": ">=11",
"eslint-plugin-promise": ">=6",
"eslint-plugin-rdf": ">=1",
"eslint-plugin-require-extensions": ">=0.1.3",
"eslint-plugin-unused-imports": "^3.0.0",
"standard": ">=11"
},
"optionalDependencies": {
"@typescript-eslint/eslint-plugin": ">=2",
"@typescript-eslint/parser": ">=2",
"eslint-import-resolver-typescript": ">=2"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"eslint": "^8",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-rdf": "^1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"standard": "^17.1.0",
"lint-staged": "^15.2.7",
"husky": "^9.0.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tpluscode/eslint-config.git"
},
"keywords": [
"eslint"
],
"author": "Tomasz Pluskiewicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/tpluscode/eslint-config/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/tpluscode/eslint-config#readme",
"lint-staged": {
"*.js": [
"eslint --fix --quiet"
]
}
}