UNPKG

tape

Version:

tap-producing test harness for node and browsers

158 lines (157 loc) 4.58 kB
{ "name": "tape", "version": "5.10.2", "description": "tap-producing test harness for node and browsers", "main": "index.js", "browser": { "fs": false }, "exports": { ".": "./index.js", "./lib/default_stream": "./lib/default_stream.js", "./lib/results": "./lib/results.js", "./lib/test": "./lib/test.js", "./package.json": "./package.json" }, "bin": "./bin/tape", "sideEffects": false, "directories": { "example": "example", "test": "test" }, "dependencies": { "@ljharb/now": "^1.0.1", "@ljharb/resumer": "^0.1.3", "@ljharb/through": "^2.3.14", "array.prototype.every": "^1.1.7", "call-bind": "^1.0.9", "call-bound": "^1.0.4", "deep-equal": "^2.2.3", "defined": "^1.0.1", "dotignore": "^0.1.2", "es-object-atoms": "^1.1.2", "for-each": "^0.3.5", "get-package-type": "^0.1.0", "glob": "^7.2.3", "has-dynamic-import": "^2.1.1", "hasown": "^2.0.4", "inherits": "^2.0.4", "is-regex": "^1.2.1", "minimist": "^1.2.8", "mock-property": "^1.1.0", "object-inspect": "^1.13.4", "object-is": "^1.1.6", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "resolve": "^2.0.0-next.7", "string.prototype.trim": "^1.2.11" }, "devDependencies": { "@arethetypeswrong/cli": "^0.18.3", "@ljharb/eslint-config": "^22.2.3", "@ljharb/tsconfig": "^0.3.2", "@types/array.prototype.every": "^1.1.1", "@types/array.prototype.flatmap": "^1.2.6", "@types/call-bind": "^1.0.5", "@types/concat-stream": "^2.0.3", "@types/deep-equal": "^1.0.4", "@types/defined": "^1.0.2", "@types/falafel": "^2.2.2", "@types/get-package-type": "^0.1.0", "@types/glob": "^7.2.0", "@types/inherits": "^2.0.0", "@types/js-yaml": "^3.12.10", "@types/minimist": "^1.2.5", "@types/node": "^12.20.55", "@types/object-inspect": "^1.13.0", "@types/object-is": "^1.1.0", "@types/object-keys": "^1.0.3", "@types/object.assign": "^4.1.0", "@types/readable-stream": "^4.0.23", "@types/semver": "^6.2.7", "@types/string.prototype.trim": "^1.2.0", "@types/tap": "^14.10.3", "array.prototype.flatmap": "^1.3.3", "auto-changelog": "^2.6.0", "concat-stream": "^1.6.2", "cross-env": "^2.0.1", "eclint": "^2.8.1", "ecstatic": "^4.1.4", "es-value-fixtures": "^1.7.1", "eslint": "^10.5.0", "falafel": "^2.2.5", "jackspeak": "=2.1.1", "jiti": "^0.0.0", "js-yaml": "^3.14.0", "npm-run-posix-or-windows": "^2.0.2", "npmignore": "^0.3.5", "nyc": "^10.3.2", "safe-publish-latest": "^2.0.0", "semver": "^6.3.1", "tap": "^8.0.1", "tap-parser": "^5.4.0", "typescript": "next" }, "scripts": { "prepack": "npmignore --auto --commentLines=autogenerated", "version": "auto-changelog && git add CHANGELOG.md", "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", "prepublishOnly": "safe-publish-latest", "prepublish": "not-in-publish || npm run prepublishOnly", "prelint:files": "git ls-files 2>/dev/null | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' || echo '*.md *.js test/*.js'", "eclint": "FILES=\"$(npm run --silent prelint:files)\" eclint check \"${FILES:=package.json}\"", "eclint:windows": "eclint check *.js", "prelint": "npm-run-posix-or-windows eclint", "lint": "eslint .", "postlint": "tsc && attw -P", "pretest": "npm run lint", "test": "npm-run-posix-or-windows tests-only", "posttest": "npx npm@'>=10.2' audit --production", "tests-only": "cross-env NODE_OPTIONS='--no-warnings' nyc tap 'test/*.js'", "tests-only:windows": "cross-env NODE_OPTIONS='--no-warnings' nyc node_modules\\tap\\bin\\run.js test/*.js", "test:example": "find example -name '*.js' | grep -v fail | grep -v static | xargs tap" }, "testling": { "files": "test/browser/*.js", "browsers": [ "ie/6..latest", "chrome/20..latest", "firefox/10..latest", "safari/latest", "opera/11.0..latest", "iphone/6", "ipad/6" ] }, "repository": { "type": "git", "url": "git://github.com/tape-testing/tape.git" }, "homepage": "https://github.com/tape-testing/tape", "keywords": [ "tap", "test", "harness", "assert", "browser" ], "author": "Jordan Harband <ljharb@gmail.com>", "funding": { "url": "https://github.com/sponsors/ljharb" }, "license": "MIT", "auto-changelog": { "output": "CHANGELOG.md", "template": "keepachangelog", "unreleased": false, "commitLimit": false, "backfillLimit": false, "hideCredit": true }, "publishConfig": { "ignore": [ ".github/workflows", "types" ] } }