-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "@tlianza/pigeon",
"version": "1.2.0",
"description": "Sentry Client for Cloudflare workers",
"main": "index.js",
"types": "index.d.ts",
"author": "Tom Lianza",
"license": "ISC",
"scripts": {
"test": "mocha --require @babel/register --require regenerator-runtime test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tlianza/pigeon.git"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@sentry/core": "^5.5.0",
"@sentry/hub": "^5.5.0",
"@sentry/minimal": "^5.5.0",
"@sentry/types": "^5.5.0",
"@sentry/utils": "^5.5.0",
"stack-trace": "0.0.10"
},
"bugs": {
"url": "https://github.com/tlianza/pigeon/issues"
},
"homepage": "https://github.com/tlianza/pigeon#readme",
"keywords": [
"cloudflare",
"workers",
"sentry",
"javascript"
]
}