forked from robertcepa/toucan-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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
{
"name": "toucan-js",
"version": "2.2.1",
"description": "Cloudflare Workers client for Sentry",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertcepa/toucan-js.git"
},
"keywords": [
"debugging",
"errors",
"exceptions",
"logging",
"sentry",
"toucan",
"toucan-js",
"workers"
],
"dependencies": {
"@sentry/core": "5.29.2",
"@sentry/utils": "5.29.2",
"@sentry/types": "5.29.2",
"@types/cookie": "0.4.0",
"@types/uuid": "8.3.0",
"cookie": "0.4.1",
"stacktrace-js": "2.0.2",
"uuid": "8.3.2"
},
"devDependencies": {
"@cloudflare/workers-types": "2.1.0",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@rollup/plugin-replace": "2.3.4",
"@types/jest": "26.0.20",
"@types/node": "14.14.20",
"@types/service-worker-mock": "2.0.1",
"jest": "26.6.3",
"rollup": "2.26.1",
"rollup-plugin-typescript2": "0.29.0",
"service-worker-mock": "2.0.5",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
},
"author": "robertcepa@icloud.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertcepa/toucan-js/issues"
},
"homepage": "https://github.com/robertcepa/toucan-js#readme",
"files": [
"dist",
"LICENSE",
"README.md"
]
}