UNPKG

cfg-test

Version:

In-source testing using Node.js Test Runner

89 lines (88 loc) 1.98 kB
{ "name": "cfg-test", "version": "0.7.0", "description": "In-source testing using Node.js Test Runner", "license": "MIT", "engines": { "node": ">=18.19.0" }, "files": [ "dist", "src", "*.d.ts", "schema.json" ], "exports": { ".": { "types": "./dist/tsx.d.ts", "import": "./dist/tsx.mjs", "require": "./dist/tsx.cjs" }, "./swc": { "types": "./dist/swc.d.ts", "import": "./dist/swc.mjs", "require": "./dist/swc.cjs" }, "./ts-node": { "types": "./dist/ts-node.d.ts", "import": "./dist/ts-node.mjs", "require": "./dist/ts-node.cjs" }, "./api": { "types": "./dist/core/api.d.ts", "import": "./dist/core/api.mjs", "require": "./dist/core/api.cjs" }, "./define": { "types": "./dist/core/define.d.ts", "import": "./dist/core/define.mjs", "require": "./dist/core/define.cjs" }, "./dts-loader": { "types": "./dist/core/dts-loader.d.mts", "import": "./dist/core/dts-loader.mjs" }, "./globals": { "types": "./globals.d.ts" }, "./schema.json": "./schema.json" }, "devDependencies": { "@tsconfig/node18": "~18.2.2", "@tsconfig/strictest": "~2.0.3", "@types/node": "~20.14.0", "dprint": "~0.46.1", "esbuild": "~0.21.1", "esbuild-plugin-replace": "^1.4.0", "typescript": "~5.4.5" }, "optionalDependencies": { "@swc-node/register": ">=1.6.5", "ts-node": "*" }, "repository": { "type": "git", "url": "https://github.com/tai-kun/cfg-test.js" }, "author": { "name": "tai-kun", "url": "https://github.com/tai-kun" }, "scripts": { "ci": "scripts/ci.sh", "tsc": "tsc --noEmit", "test": "scripts/test.sh", "build": "scripts/build.sh", "update": "scripts/update.sh" }, "volta": { "node": "18.19.0" }, "keywords": [ "cfg", "cfg-test", "test", "test-runner", "typescript" ] }