This repository was archived by the owner on Dec 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
47
48
49
{
"name": "error-handler-hoc",
"version": "1.3.2",
"description": "HOC for catching errors in react components",
"main": "dist/bundle.umd.js",
"module": "dist/bundle.umd.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack -p --config ./webpack.config.js",
"build:dev": "cross-env NODE_ENV=production webpack --config ./webpack.config.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notgiorgi/react-error-handler-hoc.git"
},
"keywords": [
"react",
"HOC",
"component",
"componentDidCatch"
],
"author": "Giorgi Bagdavadze <notgiorgi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/notgiorgi/react-error-handler-hoc/issues"
},
"homepage": "https://github.com/notgiorgi/react-error-handler-hoc#readme",
"dependencies": {
"lodash.curry": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.1",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"webpack": "^3.4.1"
},
"peerDependencies": {
"react": "^16.0.0-beta.2"
}
}