This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "redux-rollbar-telemetry-middleware",
"version": "0.1.1",
"description": "Middleware that helps to add redux action to the Rollbar.Telemetry",
"main": "lib/redux-rollbar-telemetry-middleware.js",
"scripts": {
"test": "jest src",
"lint": "eslint src spec",
"build": "cross-env NODE_ENV=production webpack && webpack",
"dev": "webpack --progress --colors --watch",
"prepublish": "rimraf lib && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Syft-Application/redux-rollbar-telemetry-middleware.git"
},
"keywords": [
"rollbar",
"redux",
"middleware",
"telemetry",
"react",
"syft"
],
"author": "Syft Online LTD",
"license": "MIT",
"bugs": {
"url": "https://github.com/Syft-Application/redux-rollbar-telemetry-middleware/issues"
},
"homepage": "https://github.com/Syft-Application/redux-rollbar-telemetry-middleware#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-loader": "^7.1.2",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.5",
"eslint": "^3.19.0",
"eslint-config-react-app": "^2.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^21.1.0",
"lodash": "^4.17.4",
"webpack": "^3.6.0"
},
"peerDependencies": {
"lodash": "^4.17.4"
}
}