-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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
{
"name": "redux-raven-persist-middleware",
"version": "1.2.3",
"description": "Redux middleware for sending error reports to Sentry through raven-js along with localStorage data.",
"main": "./index.js",
"dependencies": {
"raven-js": "^3.1.1"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-runtime": "^5.8.20",
"jsdom": "^3.1.2",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"sinon": "^1.16.1"
},
"scripts": {
"build:lib": "babel --stage 0 index.es6 -o index.js",
"pretest": "babel --stage 0 test.es6 -o test.js && npm run build:lib",
"test": "mocha test.js",
"prepublish": "npm run build:lib"
},
"repository": {
"type": "git",
"url": "https://github.com/rishantagarwal/react-redux-persist-sentry-middleware"
},
"keywords": [
"react",
"redux",
"raven",
"redux-persist",
"localStorage",
"raven-js",
"sentry",
"middleware",
"crash",
"error",
"report"
],
"author": "Rishant Agarwal <bindasrishant@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rishantagarwal/react-redux-persist-sentry-middleware"
},
"homepage": "https://github.com/rishantagarwal/react-redux-persist-sentry-middleware"
}