-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "use-page-visibility",
"version": "3.0.2",
"description": "Dead-simple, zero-config React hook lib for detecting page visibility 👁️",
"main": "dist/index.js",
"module": "dist/index.es.js",
"source": "lib.js",
"scripts": {
"clean": "rimraf dist",
"bundle": "rollup -c",
"build": "npm-run-all clean bundle",
"release": "npm run build && np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeshifu/use-page-visibility.git"
},
"keywords": [
"react",
"hooks",
"page visiblity",
"visibilityState"
],
"files": [
"dist",
"README.md"
],
"author": "Luqman Olushi <[email protected]> (https://codeshifu.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeshifu/use-page-visibility/issues"
},
"homepage": "https://github.com/codeshifu/use-page-visibility#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"np": "^3.1.0",
"npm-run-all": "^4.1.5",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rimraf": "^3.0.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0"
},
"peerDependencies": {
"react": "^16.8.x",
"react-dom": "^16.8.x"
}
}