-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.17 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
{
"name": "stackman",
"version": "4.0.1",
"description": "Enhance an error stacktrace with code excerpts and other goodies",
"main": "index.js",
"dependencies": {
"after-all-results": "^2.0.0",
"async-cache": "^1.1.0",
"debug": "^4.1.1",
"error-callsites": "^2.0.3",
"load-source-map": "^1.0.0"
},
"devDependencies": {
"longjohn": "^0.2.12",
"semver": "^6.3.0",
"standard": "^14.3.3",
"tape": "^4.13.2"
},
"scripts": {
"test": "standard && node test/strict.js && node test/non-strict.js && node test/longjohn.js && node test/sourcemap.js"
},
"repository": {
"type": "git",
"url": "git://github.com/watson/stackman.git"
},
"keywords": [
"v8",
"stack",
"stacktrace",
"stackframe",
"callsite",
"callsites",
"frame",
"source",
"debug",
"log",
"error",
"trace"
],
"author": "Thomas Watson Steen <w@tson.dk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/watson/stackman/issues"
},
"homepage": "https://github.com/watson/stackman",
"coordinates": [
56.043843,
12.609477
],
"standard": {
"ignore": [
"/test/fixtures/lib/"
]
}
}