-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.19 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "esm-loader-manager",
"version": "0.6.0",
"description": "Allows to use several ESM loaders in one Node.js application.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./register": {
"import": "./dist/register.mjs"
}
},
"bin": {
"esmlm": "./bin/esmlm.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=20.10.0"
},
"engineStrict": true,
"scripts": {
"lint": "eslint \"src/\" \"tests/\"",
"lint-package": "publint",
"pretest": "npm run build",
"test": "c8 ava",
"build": "rlb",
"version": "npm test && npm run build && npm run lint-package && git add -f bin/ dist/",
"postversion": "git rm -r --cached bin/ dist/ && git commit -m \"chore(dist): clean after release [ci skip]\" && git push origin && git push origin --tags",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Comandeer/esm-loader-manager.git"
},
"keywords": [
"esm",
"esm-loader",
"loader"
],
"author": "Comandeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Comandeer/esm-loader-manager/issues"
},
"homepage": "https://github.com/Comandeer/esm-loader-manager#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitplease": {
"nohook": true,
"style": "angular",
"types": [
"feat",
"improvement",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": "\\S+.*"
},
"devDependencies": {
"@comandeer/eslint-config": "^0.13.1",
"@comandeer/rollup-lib-bundler": "^0.23.0",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.12.10",
"ava": "^6.1.3",
"c8": "^9.1.0",
"commitplease": "^3.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"mock-fs": "^5.2.0",
"publint": "^0.2.7",
"tsx": "^4.9.3",
"typescript": "^5.4.5"
},
"dependencies": {
"execa": "^8.0.1",
"pathe": "^1.1.2",
"tslib": "^2.6.2"
}
}