-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "eslint-plugin-userscripts",
"version": "0.5.6",
"description": "Implements rules for userscripts metadata in eslint",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Yash Singh",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --recursive --file $(find tests -type f -name \"*.ts\") -r esbuild-runner/register",
"build": "tsup",
"type-check": "tsc --noEmit",
"lint": "eslint && prettier --check . --ignore-path .gitignore && markdownlint . --ignore-path .gitignore",
"lint:fix": "eslint --fix && prettier --write . --ignore-path .gitignore && markdownlint --fix . --ignore-path .gitignore",
"prepare": "husky install"
},
"dependencies": {
"semver": "^7.3.8"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
"@eslint/js": "^9.0.0",
"@types/eslint": "^8.44.8",
"@types/estree": "1.0.5",
"@types/json-schema": "^7.0.15",
"@types/mocha": "^10.0.6",
"@types/node": "^22.1.0",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^7.6.0",
"esbuild": "^0.23.0",
"esbuild-runner": "^2.2.2",
"eslint": "9.8.0",
"eslint-plugin-eslint-plugin": "^6.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.0.0",
"husky": "^9.0.6",
"json-schema": "^0.4.0",
"live-server": "^1.2.2",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.41.0",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"should": "^13.2.3",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.3.0"
},
"peerDependencies": {
"eslint": ">=8.40.0 <11"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"license": "MIT",
"homepage": "https://github.com/Yash-Singh1/eslint-plugin-userscripts#readme",
"repository": {
"type": "git",
"url": "https://github.com/Yash-Singh1/eslint-plugin-userscripts.git"
},
"bugs": {
"url": "https://github.com/Yash-Singh1/eslint-plugin-userscripts/issues"
}
}