tap
Version:
A Test-Anything-Protocol library for JavaScript
98 lines (97 loc) • 2.37 kB
JSON
{
"name": "tap",
"version": "21.5.0",
"description": "A Test-Anything-Protocol library for JavaScript",
"tshy": {
"main": true,
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"type": "module",
"bin": {
"tap": "dist/esm/run.mjs"
},
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "tshy",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"test": "tap",
"snap": "tap",
"format": "prettier --write . --log-level warn --ignore-path ../../.prettierignore --cache",
"typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts"
},
"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",
"license": "BlueOak-1.0.0",
"dependencies": {
"@tapjs/after": "3.3.0",
"@tapjs/after-each": "4.3.0",
"@tapjs/asserts": "4.3.0",
"@tapjs/before": "4.3.0",
"@tapjs/before-each": "4.3.0",
"@tapjs/chdir": "3.3.0",
"@tapjs/core": "4.4.0",
"@tapjs/filter": "4.3.0",
"@tapjs/fixture": "4.3.0",
"@tapjs/intercept": "4.3.0",
"@tapjs/mock": "4.3.0",
"@tapjs/node-serialize": "4.3.0",
"@tapjs/run": "4.4.0",
"@tapjs/snapshot": "4.3.0",
"@tapjs/spawn": "4.3.0",
"@tapjs/stdin": "4.3.0",
"@tapjs/test": "4.3.0",
"@tapjs/typescript": "3.5.0",
"@tapjs/worker": "4.3.0",
"resolve-import": "^2.1.1"
},
"tap": {
"typecheck": false,
"coverage-map": "map.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tapjs/tapjs.git",
"path": "src/tap"
},
"homepage": "https://github.com/tapjs/tapjs/src/tap#readme",
"bugs": {
"url": "https://github.com/tapjs/tapjs/issues"
},
"keywords": [
"assert",
"tap",
"test",
"testing",
"framework",
"cli",
"tapjs",
"tapjs plugin"
],
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"engines": {
"node": "20 || >=22"
}
}