-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.69 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
{
"name": "eslint-plugin-testing",
"version": "0.0.2",
"description": "ESLint plugin for testing",
"keywords": [
"testing",
"eslint",
"eslintplugin",
"eslint-plugin",
"eslint-plugin-testing"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/MatanYadaev/eslint-plugin-testing#readme",
"bugs": {
"url": "https://github.com/MatanYadaev/eslint-plugin-testing/issues"
},
"repository": "MatanYadaev/eslint-plugin-testing",
"license": "MIT",
"author": "Matan Yadaev",
"type": "commonjs",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --clean --minify",
"release": "pnpm build && changeset publish",
"changesets:add": "changeset add",
"test": "vitest run",
"eslint-docs:update": "pnpm build && eslint-doc-generator",
"eslint-docs:check": "pnpm build && eslint-doc-generator --check",
"type:check": "tsc --noEmit"
},
"dependencies": {
"@typescript-eslint/utils": "^6.4.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tsconfig/node16": "^16.1.1",
"@tsconfig/strictest": "^2.0.1",
"@types/eslint": "^8.44.2",
"@typescript-eslint/parser": "^6.4.1",
"@typescript-eslint/rule-tester": "^6.4.1",
"eslint": "^8.47.0",
"eslint-doc-generator": "^1.4.3",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.2"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
}
}