forked from eramdam/eslint-plugin-top
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 3.42 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@ericcornelissen/eslint-plugin-top",
"description": "Disallow side effects at the top level of files",
"version": "3.4.0",
"license": "ISC",
"exports": "./dist/index.js",
"type": "commonjs",
"engines": {
"node": "18.x || 20.x || 22.x"
},
"homepage": "https://github.com/ericcornelissen/eslint-plugin-top#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ericcornelissen/eslint-plugin-top.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"contributors": [
{
"name": "Damien Erambert"
},
{
"name": "Eric Cornelissen"
}
],
"peerDependencies": {
"eslint": "8.x || 9.x"
},
"devDependencies": {
"@ericcornelissen/eslint-plugin-top": "file:./",
"@eslint/json": "0.9.0",
"@eslint/markdown": "6.2.1",
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/mocha-runner": "8.7.1",
"@stryker-mutator/typescript-checker": "8.7.1",
"@types/estree": "1.0.6",
"@types/mocha": "10.0.9",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"better-npm-audit": "3.11.0",
"c8": "10.1.3",
"depreman": "0.3.5",
"eslint": "9.19.0",
"eslint-plugin-depend": "0.12.0",
"eslint-plugin-eslint-plugin": "6.4.0",
"eslint-plugin-yml": "1.16.0",
"eslint-v8": "npm:[email protected]",
"eslint-v9": "npm:[email protected]",
"is-ci": "4.1.0",
"licensee": "11.1.1",
"lockfile-lint": "4.12.1",
"markdownlint-cli": "0.43.0",
"mocha": "11.1.0",
"npm-run-all2": "7.0.1",
"nve": "18.0.0",
"prettier": "3.5.0",
"publint": "0.3.5",
"ts-node": "10.9.2",
"type-coverage": "2.29.7",
"typescript": "5.7.3",
"yaml-eslint-parser": "1.2.2"
},
"scripts": {
"_eslint": "eslint --config eslint.config.mjs",
"_prettier": "prettier \"**/*.{js,json,md,mjs,ts,yml}\" --ignore-path .gitignore",
"audit": "npm-run-all audit:*",
"audit:deprecations": "depreman --errors-only --report-unused",
"audit:deprecations:runtime": "depreman --errors-only --omit=dev",
"audit:vulnerabilities": "better-npm-audit audit",
"audit:vulnerabilities:runtime": "better-npm-audit audit --production",
"build": "tsc",
"check": "npm-run-all check:*",
"check:ci": "node scripts/maybe-run.js actionlint",
"check:formatting": "npm run _prettier -- --check",
"check:json": "npm run _eslint -- '**/*.json'",
"check:licenses": "licensee --errors-only",
"check:lockfile": "lockfile-lint",
"check:manifest": "npm run build && publint run --strict",
"check:md": "npm-run-all check:md:*",
"check:md:code": "npm run _eslint -- '**/*.md'",
"check:md:text": "markdownlint --dot --ignore-path .gitignore .",
"check:ts": "npm run _eslint -- '**/*.ts'",
"check:types": "type-coverage --at-least 100 --cache --cache-directory .cache --project tsconfig.json --strict",
"check:yml": "npm run _eslint -- '**/*.yml'",
"clean": "git clean --force -X .cache/ .temp/ _reports/ dist/",
"coverage": "c8 --config .c8rc.json npm run test",
"format": "npm run _prettier -- --write",
"mutation": "stryker run stryker.config.js",
"test": "mocha tests/unit --recursive",
"test:compat": "mocha tests/compat --recursive",
"test:compat-all": "nve 18.0.0,20.0.0,22.0.0 npm run test:compat",
"test:watch": "npm run test -- --watch",
"verify": "npm run build && npm run check && npm run coverage"
}
}