UNPKG

1.83 kBJSONView Raw
1{
2 "name": "tape",
3 "version": "4.10.0",
4 "description": "tap-producing test harness for node and browsers",
5 "main": "index.js",
6 "bin": "./bin/tape",
7 "directories": {
8 "example": "example",
9 "test": "test"
10 },
11 "dependencies": {
12 "deep-equal": "~1.0.1",
13 "defined": "~1.0.0",
14 "for-each": "~0.3.3",
15 "function-bind": "~1.1.1",
16 "glob": "~7.1.3",
17 "has": "~1.0.3",
18 "inherits": "~2.0.3",
19 "minimist": "~1.2.0",
20 "object-inspect": "~1.6.0",
21 "resolve": "~1.7.1",
22 "resumer": "~0.0.0",
23 "string.prototype.trim": "~1.1.2",
24 "through": "~2.3.8"
25 },
26 "devDependencies": {
27 "concat-stream": "^1.6.2",
28 "eclint": "^2.8.1",
29 "eslint": "^5.13.0",
30 "falafel": "^2.1.0",
31 "js-yaml": "^3.12.1",
32 "tap": "^8.0.1",
33 "tap-parser": "^3.0.5"
34 },
35 "scripts": {
36 "prelint": "eclint check",
37 "lint": "eslint .",
38 "pretest": "npm run lint",
39 "test": "npm run tests-only",
40 "tests-only": "tap test/*.js"
41 },
42 "testling": {
43 "files": "test/browser/*.js",
44 "browsers": [
45 "ie/6..latest",
46 "chrome/20..latest",
47 "firefox/10..latest",
48 "safari/latest",
49 "opera/11.0..latest",
50 "iphone/6",
51 "ipad/6"
52 ]
53 },
54 "repository": {
55 "type": "git",
56 "url": "git://github.com/substack/tape.git"
57 },
58 "homepage": "https://github.com/substack/tape",
59 "keywords": [
60 "tap",
61 "test",
62 "harness",
63 "assert",
64 "browser"
65 ],
66 "author": {
67 "name": "James Halliday",
68 "email": "mail@substack.net",
69 "url": "http://substack.net"
70 },
71 "license": "MIT"
72}