-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "redux-airbrake",
"version": "3.0.0",
"description": "Redux middleware for Airbrake error logging",
"main": "dist/redux-middleware.js",
"module": "src/index.js",
"lock": false,
"scripts": {
"build": "webpack",
"prepare": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexcastillo/redux-airbrake.git"
},
"keywords": [
"react",
"redux",
"airbrake"
],
"author": {
"name": "Alex Castillo",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcastillo/redux-airbrake/issues"
},
"homepage": "https://github.com/alexcastillo/redux-airbrake#readme",
"peerDependencies": {
"redux": "3.* || 4.*",
"@airbrake/browser": "1.*"
},
"devDependencies": {
"@airbrake/browser": "^1.0.6",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.0.6",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}