-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "@typhonjs-utils/error-parser",
"description": "Parses / filters / normalizes Error stacks from V8.",
"version": "0.0.10",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"exports": {
".": "./src/index.js",
"./defaultNamespace": "./src/data/defaultNamespace.js",
"./ErrorParser": "./src/plugin/ErrorParser.js",
"./normalizeError": "./src/util/normalizeError.js",
"./plugin": "./src/plugin.js"
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"dependencies": {
"clean-stack": "^3.0.0",
"upath": "^2.0.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@typhonjs-utils/build-test": "^0.1.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/src"
],
"homepage": "https://github.com/typhonjs-node-utils/error-parser#readme",
"keywords": [
"typhonjs",
"utils",
"error",
"parser",
"normalize",
"filter"
],
"license": "MPL-2.0",
"repository": "typhonjs-node-utils/error-parser",
"bugs": "https://github.com/typhonjs-node-utils/error-parser/issues",
"scripts": {
"eslint": "eslint .",
"posttest": "npm run eslint",
"prepublishOnly": "npm run eslint && npm run test",
"test": "c8 --reporter=lcov --reporter=text-summary mocha -colors \"test/src/**/*.test.js\""
}
}