-
-
Notifications
You must be signed in to change notification settings - Fork 305
/
package.json
128 lines (128 loc) · 3.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "tape",
"version": "5.9.0",
"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/resumer": "^0.1.3",
"@ljharb/through": "^2.3.13",
"array.prototype.every": "^1.1.6",
"call-bind": "^1.0.7",
"deep-equal": "^2.2.3",
"defined": "^1.0.1",
"dotignore": "^0.1.2",
"for-each": "^0.3.3",
"get-package-type": "^0.1.0",
"glob": "^7.2.3",
"has-dynamic-import": "^2.1.0",
"hasown": "^2.0.2",
"inherits": "^2.0.4",
"is-regex": "^1.1.4",
"minimist": "^1.2.8",
"mock-property": "^1.1.0",
"object-inspect": "^1.13.3",
"object-is": "^1.1.6",
"object-keys": "^1.1.1",
"object.assign": "^4.1.5",
"resolve": "^2.0.0-next.5",
"string.prototype.trim": "^1.2.9"
},
"devDependencies": {
"@ljharb/eslint-config": "^21.1.1",
"array.prototype.flatmap": "^1.3.2",
"auto-changelog": "^2.5.0",
"concat-stream": "^1.6.2",
"cross-env": "^2.0.1",
"eclint": "^2.8.1",
"ecstatic": "^4.1.4",
"encoding": "^0.1.13",
"es-value-fixtures": "^1.5.0",
"eslint": "=8.8.0",
"falafel": "^2.2.5",
"jackspeak": "=2.1.1",
"js-yaml": "^3.14.0",
"npm-run-posix-or-windows": "^2.0.2",
"npmignore": "^0.3.1",
"nyc": "^10.3.2",
"safe-publish-latest": "^2.0.0",
"semver": "^6.3.1",
"tap": "^8.0.1",
"tap-parser": "^5.4.0"
},
"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 --ext .js,.cjs,.mjs . bin/*",
"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 <[email protected]>",
"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"
]
}
}