-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
64
{
"name": "@honeybadger-io/webpack",
"version": "6.3.1",
"description": "Webpack plugin to upload source maps to Honeybadger's API - http://docs.honeybadger.io/guides/source-maps.html",
"main": "./dist/HoneybadgerSourceMapPlugin.js",
"scripts": {
"build": "babel src -d dist",
"build:watch": "watch 'npm run build' ./src",
"clean": "rimraf dist",
"prebuild": "npm run -s clean",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"test": "mocha",
"test:watch": "npm test -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honeybadger-io/honeybadger-js.git"
},
"keywords": [
"webpack",
"sourcemap",
"source map",
"minified js",
"honeybadger",
"honey badger"
],
"author": "Honeybadger.io <[email protected]> (https://www.honeybadger.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/honeybadger-io/honeybadger-js/issues"
},
"files": [
"dist/**"
],
"homepage": "https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/webpack",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"chai": "^4.3.4",
"cross-env": "^7.0.0",
"debug": "^4.1.0",
"lodash.find": "^4.6.0",
"mocha": "^9.0.1",
"nock": "^13.1.0",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"watch": "^1.0.2",
"webpack": "^5.39.0"
},
"dependencies": {
"@babel/runtime": "^7.14.5",
"@honeybadger-io/plugin-core": "^1.4.1",
"verror": "^1.6.1"
},
"peerDependencies": {
"webpack": ">= 4.0.0"
},
"engines": {
"node": ">=14"
}
}