-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 868 Bytes
/
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
{
"name": "use-interval-time",
"version": "1.0.2",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/rudyhuynh/use-interval-time",
"author": "Rudy Huynh <rudyhuynh@niometrics.com>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && rollup --config",
"test": "jest",
"bundle": "yarn build && yarn test && yarn pack"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"jest": "^27.4.7",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.67.0",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"files": [
"dist"
]
}