loadable-ts-transformer
Version:
TypeScript custom transformer for lodable-components SSR
66 lines (65 loc) • 1.36 kB
JSON
{
"name": "loadable-ts-transformer",
"version": "1.0.0-alpha.3",
"description": "TypeScript custom transformer for lodable-components SSR",
"main": "lib/index.js",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"format": "prettier --write \"src/**/*\"",
"format:check": "prettier --check \"src/**/*\"",
"test": "jest"
},
"keywords": [
"loadble-components",
"React",
"TypeScript",
"Plugin",
"Server Side Rendering"
],
"author": "Yosuke Kurami",
"license": "MIT",
"peerDependencies": {
"typescript": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.(ts|tsx)",
"**/*.test.(ts|tsx)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"testURL": "http://localhost"
}
}