-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "@rezstream/eslint-plugin",
"description": "An opinionated collection of ESLint shared configs and rules used by rezStream",
"version": "1.4.0",
"main": "lib/index.js",
"files": [
"lib/*"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run lint",
"update:version": "npm --no-git-tag-version version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rezstream/eslint-plugin-rezstream.git"
},
"author": "rezStream, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/rezstream/eslint-plugin-rezstream/issues"
},
"homepage": "https://rezstream.com/rezstream/eslint-plugin-github#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-wc": "^2.1.0"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"eslint": "^8.57.0"
},
"peerDependencies": {
"eslint": "^8.38.0"
}
}