-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.23 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
{
"name": "eslint-plugin-codegen",
"version": "0.30.0",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"keywords": [
"typescript",
"type-check",
"assert",
"types",
"typings",
"test",
"testing"
],
"homepage": "https://github.com/mmkal/eslint-plugin-codegen#readme",
"repository": {
"type": "git",
"url": "https://github.com/mmkal/eslint-plugin-codegen.git"
},
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.md"
],
"scripts": {
"prepare": "pnpm build",
"eslint": "eslint --max-warnings 0",
"lint": "tsc && pnpm eslint .",
"build": "tsc -p tsconfig.lib.json",
"test": "pnpm build && vitest run",
"e2e": "playwright test"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/generator": "~7.12.0",
"@babel/parser": "^7.11.5",
"@babel/traverse": "^7.11.5",
"@pnpm/deps.graph-sequencer": "^1.0.0",
"@types/dedent": "0.7.0",
"@types/eslint": "^8.44.7",
"@types/glob": "7.1.3",
"@types/js-yaml": "3.12.5",
"@types/lodash": "^4.14.202",
"@types/node": "^20.0.0",
"cheerio": "^1.0.0",
"dedent": "^1.5.1",
"eslint-plugin-markdown": "^4.0.1",
"expect": "^29.7.0",
"fp-ts": "^2.1.0",
"glob": "^10.3.10",
"io-ts": "^2.2.4",
"io-ts-extra": "^0.11.6",
"js-yaml": "^3.14.0",
"lodash": "^4.17.15",
"ms": "^2.1.3",
"read-pkg-up": "^7.0.1",
"safe-stringify": "^1.1.0",
"strip-ansi": "6.0.1"
},
"devDependencies": {
"@babel/types": "7.12.11",
"@eslint/config-inspector": "^0.4.11",
"@playwright/test": "^1.40.0",
"@types/babel__generator": "7.6.2",
"@types/babel__traverse": "7.11.0",
"@types/dedent": "0.7.0",
"@types/glob": "7.1.3",
"@types/js-yaml": "3.12.5",
"@types/minimatch": "3.0.3",
"@types/ms": "2.1.0",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.57.0",
"eslint-plugin-mmkal": "^0.10.1",
"minimatch": "3.0.4",
"np": "^10.0.7",
"pkg-pr-new": "^0.0.17",
"strip-ansi": "6.0.1",
"ts-morph": "16.0.0",
"ts-node": "9.1.1",
"tsx": "^4.7.1",
"type-fest": "^3.4.0",
"typescript": "^5.2.2",
"vitest": "^1.4.0"
}
}