@synap-ac/node-dot-extra-reporter
Version:
Custom dot reporter for the node test runner
48 lines (47 loc) • 1.18 kB
JSON
{
"name": "@synap-ac/node-dot-extra-reporter",
"author": "Synap Ltd",
"version": "1.3.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SynapLearning/node-dot-extra-reporter"
},
"bugs": {
"url": "https://github.com/SynapLearning/node-dot-extra-reporter/issues"
},
"description": "Custom dot reporter for the node test runner",
"type": "module",
"exports": {
".": {
"types": "./lib/dot-extra-reporter.d.ts",
"default": "./lib/dot-extra-reporter.js"
}
},
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf lib && npm run-script build:src",
"build:src": "tsc --p tsconfig.json",
"test": "tsc && node --test test/*.spec.js",
"test:debug": "tsc && node --inspect --test test/*.spec.js",
"test:output": "tsc && node --test-reporter=./lib/dot-extra-reporter.js --test test/demo/*.test.js"
},
"dependencies": {
"chalk": "5.3.0"
},
"devDependencies": {
"@types/node": "20.10.0",
"ts-node": "10.9.1",
"typescript": "5.3.2"
},
"keywords": [
"node",
"test",
"reporter",
"dot",
"spec"
]
}