-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "@raycast/eslint-plugin",
"version": "1.0.15",
"description": "ESLint plugin designed to help Raycast's extensions authors follow best practices",
"author": "Raycast Technologies Ltd.",
"keywords": [
"raycast",
"eslint",
"eslintplugin",
"eslint-plugin"
],
"license": "MIT",
"main": "./dist/index.js",
"files": [
"dist",
"api.js",
"api.d.ts",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"type:check": "tsc --noEmit",
"test": "jest",
"test:ci": "jest --ci",
"preupdate:docs": "npm run build",
"update:docs": "eslint-doc-generator",
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:docs --check\"",
"lint:ts": "eslint .",
"prepublish": "npm run build"
},
"dependencies": {
"@typescript-eslint/utils": "^5.62.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4"
},
"peerDependencies": {
"eslint": ">=7"
}
}