UNPKG

typescript-transform-extensions

Version:

Transforms import and export extensions for compatibility with native ES Modules

61 lines (60 loc) 1.64 kB
{ "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" } }