-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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": "@honeybadger-io/rollup-plugin",
"version": "5.10.1",
"description": "A rollup plugin to upload sourcemaps to Honeybadger",
"directories": {
"example": "examples"
},
"files": [
"./dist"
],
"scripts": {
"test": "mocha",
"build": "rollup -c",
"clean": "rm -r dist",
"build:clean": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/honeybadger-io/honeybadger-js.git"
},
"keywords": [
"rollup",
"honeybadger",
"sourcemap",
"source map",
"javascript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/honeybadger-io/honeybadger-js/issues"
},
"homepage": "https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/rollup-plugin",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"rollup": "^3.9.1",
"testdouble": "^3.16.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@honeybadger-io/plugin-core": "^1.4.1",
"fetch-retry": "^5.0.3",
"form-data": "^4.0.0",
"node-fetch": "^2.6.9",
"picomatch": "^2.3.1"
},
"peerDependencies": {
"rollup": "^3.0.0"
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"publishConfig": {
"access": "public"
}
}