UNPKG

tap-parser

Version:

parse the test anything protocol

70 lines (69 loc) 1.49 kB
{ "name": "tap-parser", "version": "18.0.0", "description": "parse the test anything protocol", "tshy": { "main": true, "exports": { "./package.json": "./package.json", ".": "./src/index.ts" } }, "type": "module", "bin": { "tap-parser": "bin/cmd.cjs" }, "main": "./dist/commonjs/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", "bin" ], "scripts": { "snap": "tap", "test": "tap", "prepare": "tshy", "pretest": "npm run prepare", "presnap": "npm run prepare", "format": "prettier --write . --loglevel warn --ignore-path ../../.prettierignore --cache", "typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts" }, "license": "BlueOak-1.0.0", "dependencies": { "events-to-array": "^2.0.3", "tap-yaml": "4.0.0" }, "tap": { "include": [ "test/*.ts" ], "coverage-map": "map.js", "typecheck": false }, "keywords": [ "tap", "test", "parser" ], "repository": { "type": "git", "url": "git+https://github.com/tapjs/tapjs.git" }, "module": "./dist/esm/index.js", "engines": { "node": "20 || >=22" } }