-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "@airbrake/node",
"version": "2.1.8",
"description": "Official Airbrake notifier for Node.js",
"author": "Airbrake",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/airbrake/airbrake-js.git",
"directory": "packages/node"
},
"homepage": "https://github.com/airbrake/airbrake-js/tree/master/packages/node",
"keywords": [
"exception",
"error",
"airbrake",
"notifier"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@airbrake/browser": "^2.1.8",
"cross-fetch": "^3.1.5",
"error-stack-parser": "^2.0.4",
"tdigest": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-jest": "^29.3.1",
"jest": "^27.3.1",
"prettier": "^2.0.2",
"ts-jest": "^27.1.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.2"
},
"main": "dist/index.js",
"module": "esm/index.js",
"files": [
"dist/",
"esm/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build:watch": "concurrently 'yarn build:cjs:watch' 'yarn build:esm:watch'",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:cjs:watch": "tsc -p tsconfig.cjs.json -w --preserveWatchOutput",
"build:esm": "tsc -p tsconfig.esm.json",
"build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
"clean": "rm -rf dist esm",
"lint": "tslint -p .",
"test": "jest"
}
}