-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-onblur",
"version": "2.0.1",
"author": {
"name": "Shelest Denis",
"email": "axules@gmail.com"
},
"browserslist --": "> 1%, not dead",
"bugs": {
"url": "https://github.com/axules/react-onblur/issues"
},
"contributors": [
{
"name": "Denis Shelest",
"email": "axules@gmail.com"
}
],
"main": "./dist/index.js",
"deprecated": false,
"description": "HOC for Blur (Unfocus) event handling of React component",
"keywords": [
"react",
"hoc",
"component",
"onblur",
"blur",
"click outside",
"outside",
"close",
"unfocus"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/axules/react-onblur.git"
},
"scripts": {
"prepack": "npm run build",
"lint": "npx eslint src/**/*",
"build": "npm run lint && npm test && babel -d dist src/index.js",
"test": "jest",
"test:watch": "jest --watchAll"
},
"peerDependencies": {
"react": "16.x - x",
"react-dom": "16.x - x"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/node": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"core-js": "^3.24.1",
"enzyme": "^3.11.0",
"eslint": "^8.20.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-runner-eslint": "^1.0.1",
"jsdom": "^20.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0"
},
"files": [
"dist",
"src"
]
}