-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.88 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
{
"name": "@voxpelli/eslint-config",
"version": "22.1.0",
"license": "MIT",
"description": "My personal ESLint config. Based on neostandard",
"author": "Pelle Wessman <pelle@kodfabrik.se> (https://kodfabrik.se/)",
"homepage": "https://github.com/voxpelli/eslint-config",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/eslint-config.git"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"index.d.ts.map",
"base-configs/**/*.js",
"base-configs/**/*.d.ts",
"base-configs/**/*.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build:2-add-ignores": "ts-ignore-import '**/*.d.ts' --allow=eslint --allow=neostandard",
"build": "run-s build:*",
"check:installed-check": "installed-check -i list-dependents-cli",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:type-coverage": "type-coverage --detail --strict --at-least 67 --ignore-files 'test/*'",
"check:tsc": "tsc",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
"clean": "run-p clean:*",
"dependents:0-update": "cd dependents-data/ && list-dependents list -n @voxpelli/eslint-config --field engines --min-downloads 0 --include-historic --precision 2",
"dependents:1-filter": "list-dependents filter --min-downloads 0 --sort-download --repository-prefix=https://github.com/voxpelli/ --repository-prefix=https://github.com/yikesable/ -i dependents-data/voxpelli__eslint-config.ndjson | jq -s '[.[].repositoryUrl | sub(\"https://github.com/\";\"\";\"i\")] | unique | sort' > dependents-data/filtered.json",
"dependents": "run-s dependents:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test": "run-s check"
},
"devDependencies": {
"@types/eslint-plugin-mocha": "~10.4.0",
"@types/eslint-plugin-security": "~3.0.0",
"@types/node": "^18.19.64",
"@voxpelli/tsconfig": "^15.0.0",
"compare-eslint-configs": "^2.1.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"installed-check": "^9.3.0",
"knip": "^5.37.1",
"list-dependents-cli": "^2.6.1",
"npm-run-all2": "^7.0.1",
"ts-ignore-import": "^4.0.1",
"type-coverage": "^2.29.7",
"typescript": "~5.6.3",
"validate-conventional-commit": "^1.0.4"
},
"peerDependencies": {
"eslint": "^9.13.0"
},
"dependencies": {
"eslint-plugin-es-x": "^8.1.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^56.0.1",
"neostandard": "^0.11.7"
}
}