-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.96 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
{
"name": "cjs2esm",
"description": "Transforms a project that uses CommonJS to ES Modules.",
"homepage": "https://homer0.github.io/cjs2esm/",
"version": "5.0.0",
"repository": "homer0/cjs2esm",
"author": "Leonardo Apiwan (@homer0) <[email protected]>",
"keywords": [
"commonjs",
"esmodules",
"cjs",
"esm",
"es-modules"
],
"license": "MIT",
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"5to6-codemod": "1.8.0",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"jscodeshift": "17.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@homer0/eslint-plugin": "^12.0.6",
"@homer0/prettier-config": "^1.1.3",
"@homer0/prettier-plugin-jsdoc": "^9.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"docdash": "homer0/docdash#semver:^2.1.2",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jimple": "^1.5.0",
"jsdoc": "^4.0.4",
"jsdoc-ts-utils": "^5.0.0",
"leasot": "^14.4.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0"
},
"main": "src/index.js",
"bin": {
"cjs2esm": "./src/bin.js"
},
"engine-strict": true,
"engines": {
"node": ">=18.17 <23"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
},
"scripts": {
"prepublishOnly": "./utils/scripts/prepublishOnly",
"test": "./utils/scripts/test",
"lint": "./utils/scripts/lint",
"lint:all": "./utils/scripts/lint-all",
"docs": "./utils/scripts/docs",
"todo": "./utils/scripts/todo",
"prepare": "./utils/scripts/prepare"
},
"config": {
"cjs2esm": {
"ignore": [
"5to6-codemod"
],
"filesWithShebang": [
"src/bin.js"
]
}
}
}