-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.28 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
{
"name": "eslint-plugin-proper-tests",
"version": "2.0.0",
"description": "ESLint rules for writing more proper tests.",
"keywords": [
"eslint",
"jest",
"eslint-plugin",
"eslintplugin",
"rules"
],
"author": {
"email": "[email protected]",
"name": "Maks Rafalko",
"url": "https://github.com/maks-rafalko"
},
"private": false,
"license": "MIT",
"exports": {
".": "./dist/src/plugin.js"
},
"engines": {
"node": "^18.18.0 || >=20.0.0",
"npm": ">= 9.6.3",
"yarn": "Please use NPM!"
},
"scripts": {
"analyze": "npm run format && npm run lint && npm run lint:docs && npm run lint:eslint-docs && npm run test",
"test": "jest --runInBand --ci --logHeapUsage --no-cache --detectOpenHandles --coverage",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "npm run lint -- --fix",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:eslint-docs": "npm run update:eslint-docs -- --check",
"update:eslint-docs": "npm run build && eslint-doc-generator",
"build": "tsc --build ./tsconfig.build.json"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"ts-api-utils": "1.3.0"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@tsconfig/node16": "^16.1.3",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.11",
"@typescript-eslint/rule-tester": "^8.8.1",
"eslint-config-prettier": "^9.1.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-unicorn": "56.0.0",
"jest": "^29.7.0",
"markdownlint-cli": "^0.41.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
},
"files": [
"dist"
],
"peerDependencies": {
"eslint": ">= 8",
"typescript": "*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": false
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/maks-rafalko/eslint-plugin-proper-tests.git"
}
}