-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
{
"name": "react-use-focus-exit",
"version": "1.0.1",
"description": "A React component or hook that handles when focus exits a container element",
"browser": "dist/react-use-focus-exit.umd.js",
"module": "dist/react-use-focus-exit.esm.js",
"files": [
"dist/"
],
"scripts": {
"test": "yarn run-p -r start \"cypress run\"",
"test:watch": "yarn run-p start \"cypress open\"",
"cypress": "cypress",
"build": "NODE_ENV=production rollup -c",
"start": "rollup -c -w",
"prepublishOnly": "yarn run-s test build",
"predeploy": "yarn build",
"deploy": "gh-pages --dist demo --src '{index.html,index.js}' --git git"
},
"keywords": [
"react",
"focus",
"exit",
"blur",
"outside",
"onclickoutside"
],
"author": "Carlos Filoteo",
"license": "MIT",
"repository": "github:filoxo/react-use-focus-exit",
"homepage": "https://filoxo.github.io/react-use-focus-exit/",
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-generate-html-template": "^1.6.1",
"rollup-plugin-livereload": "^1.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.3.0"
},
"devDependencies": {
"@testing-library/cypress": "^6.0.0",
"cypress": "^4.2.0",
"cypress-plugin-tab": "^1.0.5",
"gh-pages": "^2.2.0",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup-plugin-postcss": "^2.5.0"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}