-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "eslint-cjs-to-esm",
"version": "5.0.1",
"description": "ESLint wrapper for migration from CJS to ESM.",
"keywords": [
"eslint",
"cjs",
"esm",
"mjs",
"migration",
"autofix",
"migrate"
],
"homepage": "https://github.com/azu/eslint-cjs-to-esm",
"bugs": {
"url": "https://github.com/azu/eslint-cjs-to-esm/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/eslint-cjs-to-esm.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"type": "module",
"exports": {
".": "./eslint-cjs-to-esm.js",
"./eslint.config.mjs": "./eslint.config.mjs",
"./package.json": "./package.json"
},
"main": "./eslint-cjs-to-esm.js",
"bin": {
"eslint-cjs-to-esm": "./eslint-cjs-to-esm.js"
},
"files": [
"./eslint-cjs-to-esm.js",
"./eslint.config.mjs"
],
"scripts": {
"test": "expected-exit-status 1 --stdout \"/\\d+ problems/\" --command \"node eslint-cjs-to-esm.js \"\"./test-fixtures/*.ts\"\"\""
},
"devDependencies": {
"expected-exit-status": "^3.1.0"
},
"packageManager": "npm@10.9.2",
"dependencies": {
"@eslint/compat": "^1.2.6",
"eslint": "^9.20.0",
"eslint-import-resolver-typescript": "^3.8.1",
"eslint-plugin-file-extension-in-import-ts": "^2.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^56.0.1",
"execa": "^9.5.2",
"globals": "^15.15.0",
"typescript-eslint": "^8.24.1"
}
}