-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.18 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": "code-migration-helpers",
"version": "0.6.1",
"description": "Provides useful (but currently not thorough) code migration helpers",
"author": {
"email": "[email protected]",
"name": "softkave"
},
"license": "MIT",
"keywords": [
"code migration"
],
"repository": {
"type": "git",
"url": "https://github.com/softkave/code-migration-helpers.git"
},
"bugs": {
"url": "https://github.com/softkave/code-migration-helpers/issues"
},
"homepage": "https://github.com/softkave/code-migration-helpers",
"type": "module",
"exports": {
".": null
},
"bin": "esm-bin/src/index.mjs",
"files": [
"esm-bin/src/{*.mjs,**/*.mjs}"
],
"scripts": {
"test": "vitest --config ./vitest.config.ts",
"clean-esm-bin": "rm -rf ./esm-bin",
"compile-esm-bin": "tsc --project tsconfig-esm.json",
"cp-pkg-esm-bin": "cp ./package.json ./esm-bin/package.json",
"add-ext-esm-bin": "npx --yes -- code-migration-helpers@latest add-ext -f='./esm-bin' --to='.mjs'",
"rename-ext-esm-bin": "npx --yes -- code-migration-helpers@latest rename-ext -f='./esm-bin' --from='.js' --to='.mjs'",
"compile-esm": "npm run clean-esm-bin && npm run compile-esm-bin && npm run cp-pkg-esm-bin && npm run add-ext-esm-bin && npm run rename-ext-esm-bin",
"start-esm": "node ./esm-bin/src/index.mjs",
"lint": "gts lint",
"fix": "gts fix",
"posttest": "npm run lint",
"compile": "npm run compile-esm",
"start": "npm run start-esm",
"check-circular-deps": "npx dpdm --no-warning --no-tree ./src/index.ts",
"publish-to-npm": "npm run compile && npm publish",
"publish-to-local": "npm run compile && yalc publish",
"show-packlist": "npm run compile && npm pack --dry-run"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "20.11.5",
"gts": "^5.3.0",
"vitest": "^1.5.3"
},
"dependencies": {
"@isaacs/cliui": "^8.0.2",
"case": "^1.6.3",
"fs-extra": "^11.2.0",
"lodash-es": "^4.17.21",
"softkave-js-utils": "^0.7.0",
"type-fest": "^4.18.0",
"typescript": "^5.4.5"
}
}