UNPKG

ts-node-test

Version:

Use the Node.js test runner, but with TypeScript via ts-node

59 lines (58 loc) 1.47 kB
{ "name": "ts-node-test", "version": "0.4.4", "description": "Use the Node.js test runner, but with TypeScript via ts-node", "type": "module", "files": [ "dist" ], "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "ts-node-test": "dist/bin.js" }, "scripts": { "build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc", "lint": "tsc --noEmit -p tsconfig.lint.json && eslint --ignore-path .gitignore .", "lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix --ignore-path .gitignore .", "test": "npm run build && node dist/bin.js test/", "prepack": "npm run build" }, "engines": { "node": ">=18.7.0" }, "repository": { "type": "git", "url": "git+https://github.com/meyfa/ts-node-test.git" }, "keywords": [ "nodejs", "test", "test runner", "testing", "typescript", "ts-node" ], "author": "Fabian Meyer", "license": "MIT", "bugs": { "url": "https://github.com/meyfa/ts-node-test/issues" }, "homepage": "https://github.com/meyfa/ts-node-test#readme", "devDependencies": { "@meyfa/eslint-config": "6.0.0", "@types/node": "20.14.10", "@types/sinon": "17.0.3", "@types/yargs": "17.0.32", "eslint": "8.57.0", "sinon": "18.0.0", "typescript": "5.5.3" }, "dependencies": { "ts-node": "10.9.2", "yargs": "17.7.2" }, "peerDependencies": { "typescript": "^4.0.0 || ^5.0.0" } }