-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.89 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
{
"name": "babel-dual-package",
"version": "1.1.3",
"description": "CLI for building a dual ESM and CJS package with Babel.",
"type": "module",
"main": "dist",
"bin": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=16.19.0"
},
"engineStrict": true,
"scripts": {
"clean": "rm -rf ./dist",
"prettier": "prettier -w *.js src/*.js test/*.js",
"lint": "eslint *.js src/*.js test/*.js",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov node --no-warnings --test --test-reporter=spec test/*.js",
"prebuild": "npm run clean",
"build": "node build.js",
"prepack": "npm run build"
},
"author": "Morgan Ney <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/traverse": "^7.23.9",
"glob": "^10.3.3",
"magic-string": "^0.30.1",
"read-package-up": "^11.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@eslint/js": "^8.45.0",
"@knighted/dump": "^1.0.2",
"c8": "^9.1.0",
"eslint": "^8.45.0",
"eslint-plugin-n": "^16.0.1",
"globals": "^13.20.0",
"prettier": "^3.2.4",
"typescript": "^5.1.6"
},
"prettier": {
"printWidth": 90,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"files": [
"dist"
],
"keywords": [
"node",
"babel",
"typescript",
"dual package",
"es module",
"commonjs",
"esm",
"cjs"
],
"repository": {
"type": "git",
"url": "https://github.com/morganney/babel-dual-package.git"
},
"bugs": {
"url": "https://github.com/morganney/babel-dual-package/issues"
}
}