-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "use-elapsed-time",
"version": "3.0.4",
"description": "React hook to measure elapsed time using requestAnimationFrame",
"main": "./lib/index.js",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"author": "Vasil Dimitrov",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"start": "node scripts/serve.js",
"ts-declaration": "tsc --declaration --emitDeclarationOnly --outDir lib",
"build": "yarn ts-declaration && node scripts/build.js",
"test": "jest --collectCoverage --coverageDirectory=\"coverage\"",
"test-watch": "jest --watch",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vydimitrov/use-elapsed-time.git"
},
"keywords": [
"react",
"hook",
"requestAnimationFrame",
"animation",
"loop",
"elapsed",
"time"
],
"bugs": {
"url": "https://github.com/vydimitrov/use-elapsed-time/issues"
},
"homepage": "https://github.com/vydimitrov/use-elapsed-time#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "26.0.24",
"esbuild": "0.12.24",
"jest": "27.1.0",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-jest": "27.0.5",
"typescript": "4.4.2"
}
}