-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.63 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
56
57
58
59
60
61
62
63
64
65
{
"name": "trace-unhandled",
"version": "0.0.0-development",
"description": "Much better tracing of unhandled promise rejections in JavaScript",
"author": "Gustaf Räntilä",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantila/trace-unhandled/issues"
},
"bin": {
"trace-unhandled": "bin.js"
},
"homepage": "https://github.com/grantila/trace-unhandled#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./browser.js",
"engines": {
"node": ">=10"
},
"files": [
"dist",
"browser.js",
"register.js",
"bin.js"
],
"scripts": {
"build:node": "rimraf dist && tsc -p .",
"build:web": "rimraf dist-web && tsc -p tsconfig.rollup.json",
"build:rollup": "rimraf browser.js && rollup dist-web/web/register-web.js --file browser.js --format iife",
"build": "concurrently 'yarn build:node' 'yarn build:web' && yarn build:rollup",
"test": "node --expose-gc node_modules/.bin/jest --coverage",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/grantila/trace-unhandled"
},
"keywords": [
"trace",
"unhandled",
"rejection",
"promise",
"stack",
"stacktrace"
],
"dependencies": {
"haxec": "^2.0.1"
},
"devDependencies": {
"@types/jest": "20.0.8",
"@types/node": "^14.14.31",
"already": "^1.13.2",
"concurrently": "^6.0.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "20.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"typescript": "^4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}