forked from tapjs/tapjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 947 Bytes
/
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
{
"name": "tap",
"version": "0.4.1",
"author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me)",
"description": "A Test-Anything-Protocol library",
"bin": "bin/tap.js",
"main": "lib/main.js",
"dependencies": {
"inherits": "*",
"yamlish": "*",
"slide": "*",
"runforcover": "~0.0.2",
"nopt": "~2",
"mkdirp": "~0.3",
"difflet": "~0.2.0",
"deep-equal": "~0.0.0",
"buffer-equal": "~0.0.0",
"glob": "~3.1.14"
},
"bundledDependencies": [
"inherits",
"tap-consumer",
"yamlish"
],
"keywords": [
"assert",
"test",
"tap"
],
"contributors": [
"Isaac Z. Schlueter <[email protected]> (http://blog.izs.me)",
"baudehlo <[email protected]>"
],
"license": {
"type": "MIT",
"url": "https://github.com/isaacs/node-tap/raw/master/LICENSE"
},
"repository": "git://github.com/isaacs/node-tap.git",
"scripts": {
"test": "bin/tap.js test/*.js"
}
}