-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 KB
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
{
"name": "node-cjs-interop-finder",
"description": "A helper command for babel-plugin-node-cjs-interop",
"keywords": [
"cli",
"commonjs",
"node",
"esm",
"mjs",
"cjs",
"default import"
],
"homepage": "https://github.com/qnighy/node-cjs-interop#readme",
"bugs": {
"url": "https://github.com/qnighy/node-cjs-interop/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/qnighy/node-cjs-interop.git",
"directory": "packages/node-cjs-interop-finder"
},
"license": "MIT",
"author": "Masaki Hara <ackie.h.gmai@gmail.com>",
"version": "0.1.5",
"type": "module",
"bin": "./bin/node-cjs-interop-finder.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "$npm_execpath run build:tsc && $npm_execpath run build:babel",
"build:babel": "babel -d dist src -x '.ts' --ignore 'src/**/*.test.ts,src/__fixtures__/**/*.ts'",
"build:tsc": "tsc --build",
"fmt": "prettier -w .",
"fmt:check": "prettier -c .",
"prepack": "$npm_execpath run build",
"lint": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@babel/parser": "^7.23.3",
"@babel/types": "^7.23.3",
"resolve": "^1.22.8"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/node": "^20.14.14",
"@types/resolve": "^1.20.6",
"babel-jest": "^29.7.0",
"eslint": "^9.39.1",
"jest": "^29.7.0",
"jest-resolve": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"prettier": "^3.3.3",
"typescript": "^5.9.3"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts",
".mts"
],
"resolver": "jest-ts-webcompat-resolver"
}
}