This repository was archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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
{
"name": "multi-tap",
"version": "1.0.2",
"description": "Spawn and merge tap-producing tests",
"license": "MIT",
"author": "Vincent Weevers",
"main": "lib/index.js",
"bin": "lib/bin.js",
"files": [
"lib"
],
"scripts": {
"check:missing": "dependency-check package.json lib/bin.js",
"check:unused": "dependency-check package.json lib/bin.js --unused --no-dev",
"test": "npm-run-all --silent check:* 1>&2 && tape test/*.js"
},
"dependencies": {
"after": "~0.8.2",
"common-prefix": "~1.1.0",
"cross-spawn": "~4.0.2",
"debug": "^3.1.0",
"existent": "~1.0.1",
"glob": "~7.1.1",
"js-yaml": "~3.6.1",
"micromatch": "~2.3.11",
"minimist": "~1.2.0",
"multistream": "~2.1.0",
"pump": "~1.0.1",
"tap-parser": "~3.0.3",
"through2": "~2.0.1",
"xtend": "~4.0.1"
},
"devDependencies": {
"concat-stream": "~1.6.2",
"dependency-check": "~3.2.0",
"npm-run-all": "~4.1.3",
"tape": "~4.9.1"
},
"keywords": [
"test",
"tap",
"tape",
"tap-protocol"
],
"repository": "https://github.com/ironSource/node-multi-tap",
"bugs": "https://github.com/ironSource/node-multi-tap/issues",
"homepage": "https://github.com/ironSource/node-multi-tap",
"engines": {
"node": ">=4.0.0",
"npm": ">=2.0.0"
}
}