-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.33 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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/roarr-sentry/**/*"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"@sentry/types": "^7.13.0",
"roarr": "^7.8.0"
},
"description": "Sentry integration that adds Roarr logs to Sentry breadcrumbs.",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"ava": "^3.15.0",
"coveralls": "^3.1.1",
"del-cli": "^4.0.1",
"eslint": "^8.25.0",
"eslint-config-canonical": "^32.49.1",
"husky": "^7.0.4",
"nyc": "^15.1.0",
"semantic-release": "^18.0.1",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=10.0"
},
"keywords": [
"roarr",
"sentry"
],
"license": "BSD-3-Clause",
"main": "./dist/src/index.js",
"name": "@roarr/sentry",
"private": false,
"repository": {
"type": "git",
"url": "git@github.com:gajus/roarr-sentry.git"
},
"scripts": {
"build": "del-cli ./dist && tsc",
"lint": "eslint ./src ./test && tsc --noEmit",
"prepare": "husky install",
"test": "NODE_ENV=test ava --serial --verbose"
},
"typings": "./dist/src/index.d.ts",
"version": "1.0.0"
}