-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 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
55
56
57
58
59
{
"name": "use-interval",
"version": "1.4.0",
"description": "React hook for setting an interval as posted on overreacted.io",
"author": "Hermanya",
"license": "MIT",
"repository": "Hermanya/use-interval",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom --coverage --watch",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": ">=16.8.0 || ^17"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/runtime": "^7.3.1",
"@types/jest": "^27.0.1",
"@types/react-dom": "^17.0.8",
"@types/react": "^17.0.0",
"babel-preset-react-app": "^10.0.0",
"cross-env": "^7.0.3",
"gh-pages": "^3.2.3",
"prettier": "2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"rollup": "^2.52.7",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-url": "^3.0.1",
"typescript": "^4.1.2"
},
"files": [
"dist"
],
"keywords": [
"react",
"hook",
"interval",
"setInterval"
]
}