UNPKG

3.49 kBJSONView Raw
1{
2 "name": "tape",
3 "version": "5.7.1",
4 "description": "tap-producing test harness for node and browsers",
5 "main": "index.js",
6 "browser": {
7 "fs": false
8 },
9 "exports": {
10 ".": [
11 {
12 "default": "./index.js"
13 },
14 "./index.js"
15 ],
16 "./lib/default_stream": "./lib/default_stream.js",
17 "./lib/results": "./lib/results.js",
18 "./lib/test": "./lib/test.js",
19 "./package": "./package.json",
20 "./package.json": "./package.json"
21 },
22 "bin": "./bin/tape",
23 "directories": {
24 "example": "example",
25 "test": "test"
26 },
27 "dependencies": {
28 "@ljharb/resumer": "^0.0.1",
29 "@ljharb/through": "^2.3.11",
30 "array.prototype.every": "^1.1.5",
31 "call-bind": "^1.0.2",
32 "deep-equal": "^2.2.2",
33 "defined": "^1.0.1",
34 "dotignore": "^0.1.2",
35 "for-each": "^0.3.3",
36 "get-package-type": "^0.1.0",
37 "glob": "^7.2.3",
38 "has": "^1.0.3",
39 "has-dynamic-import": "^2.0.1",
40 "inherits": "^2.0.4",
41 "is-regex": "^1.1.4",
42 "minimist": "^1.2.8",
43 "mock-property": "^1.0.0",
44 "object-inspect": "^1.12.3",
45 "object-is": "^1.1.5",
46 "object-keys": "^1.1.1",
47 "object.assign": "^4.1.4",
48 "resolve": "^2.0.0-next.5",
49 "string.prototype.trim": "^1.2.8"
50 },
51 "devDependencies": {
52 "@ljharb/eslint-config": "^21.1.0",
53 "array.prototype.flatmap": "^1.3.2",
54 "aud": "^2.0.3",
55 "auto-changelog": "^2.4.0",
56 "concat-stream": "^1.6.2",
57 "eclint": "^2.8.1",
58 "ecstatic": "^4.1.4",
59 "es-value-fixtures": "^1.4.2",
60 "eslint": "=8.8.0",
61 "falafel": "^2.2.5",
62 "intl-fallback-symbol": "^1.0.0",
63 "jackspeak": "=2.1.1",
64 "js-yaml": "^3.14.0",
65 "npm-run-posix-or-windows": "^2.0.2",
66 "npmignore": "^0.3.0",
67 "safe-publish-latest": "^2.0.0",
68 "tap": "^8.0.1",
69 "tap-parser": "^5.4.0"
70 },
71 "scripts": {
72 "prepack": "npmignore --auto --commentLines=autogenerated",
73 "version": "auto-changelog && git add CHANGELOG.md",
74 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
75 "prepublishOnly": "safe-publish-latest",
76 "prepublish": "not-in-publish || npm run prepublishOnly",
77 "prelint:files": "git ls-files 2>/dev/null | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' || echo '*.md *.js test/*.js'",
78 "eclint": "FILES=\"$(npm run --silent prelint:files)\" eclint check \"${FILES:=package.json}\"",
79 "eclint:windows": "eclint check *.js",
80 "prelint": "npm-run-posix-or-windows eclint",
81 "lint": "eslint --ext .js,.cjs,.mjs . bin/*",
82 "pretest": "npm run lint",
83 "test": "npm run tests-only",
84 "posttest": "aud --production",
85 "tests-only": "nyc tap 'test/*.js'",
86 "test:example": "find example -name '*.js' | grep -v fail | grep -v static | xargs tap"
87 },
88 "testling": {
89 "files": "test/browser/*.js",
90 "browsers": [
91 "ie/6..latest",
92 "chrome/20..latest",
93 "firefox/10..latest",
94 "safari/latest",
95 "opera/11.0..latest",
96 "iphone/6",
97 "ipad/6"
98 ]
99 },
100 "repository": {
101 "type": "git",
102 "url": "git://github.com/ljharb/tape.git"
103 },
104 "homepage": "https://github.com/ljharb/tape",
105 "keywords": [
106 "tap",
107 "test",
108 "harness",
109 "assert",
110 "browser"
111 ],
112 "author": "Jordan Harband <ljharb@gmail.com>",
113 "funding": {
114 "url": "https://github.com/sponsors/ljharb"
115 },
116 "license": "MIT",
117 "auto-changelog": {
118 "output": "CHANGELOG.md",
119 "template": "keepachangelog",
120 "unreleased": false,
121 "commitLimit": false,
122 "backfillLimit": false,
123 "hideCredit": true
124 },
125 "publishConfig": {
126 "ignore": [
127 ".github/workflows"
128 ]
129 }
130}