-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.62 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
{
"name": "ts-module-alias-transformer",
"version": "2.0.1",
"description": "A cli tool uses Babel to rewrite module name from typescript's build result including .d.ts files.",
"type": "module",
"exports": "./dist/index.cjs",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"run": "node ./bin/index.cjs",
"eslint": "eslint ./src/**/*.ts",
"test": "mocha",
"dev": "NODE_ENV=production;ts-node src/index.ts",
"prebuild": "rimraf lib",
"build": "webpack",
"prepack": "npm run build && npm run test",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t83714/ts-module-alias-transformer.git"
},
"keywords": [
"typescript",
"module",
"alias",
"babel"
],
"author": "Jacky Jiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/t83714/ts-module-alias-transformer/issues"
},
"homepage": "https://github.com/t83714/ts-module-alias-transformer#readme",
"private": false,
"bin": {
"ts-module-alias-transformer": "./bin/index.cjs"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-syntax-typescript": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/babel__core": "^7.20.5",
"@types/chai": "^4.3.11",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.9",
"@types/recursive-readdir": "^2.2.4",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"babel-plugin-module-resolver": "^5.0.0",
"caller-path": "^4.0.0",
"chai": "^5.0.0-rc.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"make-dir": "^4.0.0",
"mocha": "^10.2.0",
"prettier": "^3.1.1",
"recursive-readdir": "^2.2.3",
"rimraf": "^5.0.5",
"slash": "^5.1.0",
"tmp": "^0.2.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"mocha": {
"require": [
"ts-node/register"
],
"loader": "ts-node/esm",
"spec": [
"src/test/**/**.spec.ts"
]
}
}