forked from Zoltu/typescript-transformer-append-js-extension
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 778 Bytes
/
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
{
"name": "@nvandamme/typescript-transformer-append-js-extension",
"description": "A TypeScript transformer for use with ttypescript that will append the JS extension to all relative imports that have no extension.",
"version": "1.0.11",
"repository": {},
"license": "Unlicense",
"main": "output/index.js",
"devDependencies": {
"@types/node": ">=16.0.0",
"ts-node": ">=8.0.2",
"ts-patch": "^2.0.1",
"ttypescript": "^1.5.13",
"typescript": ">=4.6.0"
},
"files": [
"/output/",
"/source/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"test": "ttsc -p tests/tsconfig.json && echo Go look at tests/output/index.js to validate transformer did its job, because I'm too lazy to write a real test."
}
}