-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "tape-catch",
"version": "1.0.6",
"description": "a wrapper around tape that catches and reports exceptions",
"main": "index.js",
"scripts": {
"copy-tape-tests": "bin/copy-tape-tests.js",
"tape-tests": "npm run copy-tape-tests && tap test/*.js",
"test:browser": "testling -u",
"test:node": "tap test/catch-exceptions.js",
"test": "npm run test:node"
},
"testling": {
"files": "./test/catch-exceptions/catch.js"
},
"repository": {
"type": "git",
"url": "https://github.com/michaelrhodes/tape-catch.git"
},
"keywords": [
"tape",
"exception",
"catch"
],
"author": "Michael Rhodes",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelrhodes/tape-catch/issues"
},
"homepage": "https://github.com/michaelrhodes/tape-catch",
"dependencies": {
"global": "~4.3.0"
},
"peerDependencies": {
"tape": "*"
},
"devDependencies": {
"concat-stream": "~1.4.7",
"cpr": "~0.3.2",
"falafel": "~0.3.1",
"mkdirp": "~0.5.0",
"run-series": "~1.0.2",
"string.prototype.trim": "~1.1.2",
"tap": "~0.5.0",
"tape": "~4.5.1",
"testling": "~1.7.1"
}
}