-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "@honeybadger-io/plugin-core",
"version": "1.4.1",
"description": "Shared functionality used by Honeybadger's javascript build plugins",
"files": [
"dist/**"
],
"scripts": {
"test": "mocha",
"build": "rollup -c",
"clean": "rm -rf dist",
"build:clean": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/honeybadger-io/honeybadger-js.git"
},
"keywords": [
"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/plugin-core",
"devDependencies": {
"@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",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.0.2",
"testdouble": "^3.16.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"fetch-retry": "^5.0.3",
"form-data": "^4.0.0",
"node-fetch": "^2.6.9"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
}
}