forked from esbuild-kit/cjs-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.31 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
{
"name": "cjs-loader-fix",
"version": "0.0.2",
"publishConfig": {
"access": "public"
},
"description": "Node.js loader for compiling ESM & TypeScript modules to CommonJS",
"keywords": [
"esbuild",
"loader",
"node",
"cjs",
"commonjs",
"esm",
"typescript"
],
"license": "MIT",
"repository": "esbuild-kit/cjs-loader",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"build": "pkgroll --target node12.20 --minify",
"lint": "eslint .",
"pretest": "npm run build",
"test": "node --require ./dist/index.js tests/index.ts"
},
"dependencies": {
"@esbuild-kit/core-utils": "^1.2.1",
"get-tsconfig": "^3.0.1",
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.22.0",
"@types/node": "^17.0.33",
"@types/semver": "^7.3.9",
"eslint": "^8.15.0",
"execa": "^6.1.0",
"get-node": "^12.1.0",
"manten": "^0.1.0",
"pkgroll": "^1.3.0",
"semver": "^7.3.7",
"typescript": "^4.6.4"
},
"eslintConfig": {
"extends": "@pvtnbr",
"ignorePatterns": [
"tests/fixtures"
],
"rules": {
"import/no-unresolved": "off",
"@typescript-eslint/no-shadow": [
"error",
{
"allow": [
"describe"
]
}
]
}
}
}