forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "@bugsnag/plugin-react",
"version": "6.2.0",
"main": "dist/bugsnag-react.js",
"description": "React integration for @bugsnag/js",
"browser": "dist/bugsnag-react.js",
"types": "types/bugsnag-react.d.ts",
"homepage": "https://www.bugsnag.com/",
"repository": {
"type": "git",
"url": "[email protected]:bugsnag/bugsnag-js.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"types"
],
"scripts": {
"clean": "rm -fr dist && mkdir dist",
"build": "npm run clean && npm run build:dist && npm run build:dist:min",
"build:dist": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/index.js --standalone=bugsnag__react | ../../bin/extract-source-map dist/bugsnag-react.js",
"build:dist:min": "NODE_ENV=production IS_BROWSER=yes ../../bin/bundle src/index.js --standalone=bugsnag__react | ../../bin/minify dist/bugsnag-react.min.js",
"test": "jest",
"postversion": "npm run build"
},
"author": "Bugsnag",
"license": "MIT",
"peerDependencies": {
"@bugsnag/js": "*"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.6.0",
"jest": "^23.6.0",
"react": "^16.5.0",
"react-test-renderer": "^16.5.0"
}
}