-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
56 lines (56 loc) · 1.78 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
{
"name": "@honeybadger-io/react",
"version": "6.1.25",
"description": "React.js integration for honeybadger",
"author": "Jason Truesdell <[email protected]> (https://github.com/JasonTrue)",
"license": "MIT",
"homepage": "https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/react",
"repository": {
"type": "git",
"url": "[email protected]:honeybadger-io/honeybadger-js.git"
},
"main": "dist/honeybadger-react.cjs.js",
"types": "./dist/index.d.ts",
"module": "dist/honeybadger-react.esm.js",
"unpkg": "dist/honeybadger-react.js",
"jsnext:main": "dist/honeybadger-react.esm.js",
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "tsc --build tsconfig.json && rollup -c && tsc --build tsconfig.types.json",
"start": "rollup -c -w",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"@honeybadger-io/js": "^6.2.0",
"prop-types": "^15.0.0",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@honeybadger-io/js": "^6.10.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"@types/react-test-renderer": "^18.0.0",
"@types/sinon": "^10.0.11",
"cross-env": "^7.0.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.0",
"jest-fetch-mock": "^3.0.3",
"react": "^18.1.0",
"react-scripts": "^5.0.1",
"react-test-renderer": "18.1.0",
"rollup": "^2.70.2",
"sinon": "^14.0.0",
"typescript": "^4.6.3"
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
}
}