-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "typescript-transform-extensions",
"version": "1.0.1",
"description": "Transforms import and export extensions for compatibility with native ES Modules",
"keywords": [
"typescript",
"transform",
"transformer",
"plugin",
"path",
"import",
"export",
"require",
"extension"
],
"license": "MIT",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"author": "Anthony Nichols <hi@anthonynichols.me>",
"homepage": "https://github.com/anthonynichols/typescript-transform-extensions#readme",
"bugs": {
"url": "https://github.com/anthonynichols/typescript-transform-extensions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthonynichols/typescript-transform-extensions.git"
},
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "tsc",
"build-tests": "tsc -p \"./tests/fixtures/tsconfig.json\"",
"clean": "rm -rf lib tsconfig.tsbuildinfo",
"format": "prettier --write \"{src,tests}/**/*.{js,ts}\"",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/main.test.ts"
]
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"jest": "^24.9.0",
"prettier": "^2.1.2",
"ts-expose-internals": "^4.0.5",
"ts-jest": "^24.3.0",
"ts-node": "^9.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.0.5"
}
}