micro-test-runner
Version:
A minimal JavaScript test runner.
39 lines (38 loc) • 1.08 kB
JSON
{
"name": "micro-test-runner",
"version": "2.0.1",
"description": "A minimal JavaScript test runner.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"test": "tsc --build tsconfig.test.json && node post-build.js ./test_build/src/index.js && node test_build/tests/index.js",
"build": "tsc --build tsconfig.json && node post-build.js ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gigabyte5671/micro-test-runner.git"
},
"keywords": [
"JavaScript",
"TypeScript",
"unit",
"test",
"test-runner",
"performance",
"minimal"
],
"author": {
"name": "Giga",
"url": "https://github.com/Gigabyte5671"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Gigabyte5671/micro-test-runner/issues"
},
"homepage": "https://github.com/Gigabyte5671/micro-test-runner#readme",
"funding": "https://github.com/sponsors/Gigabyte5671",
"devDependencies": {
"typescript": "^5.7.2"
}
}