forked from thibaultboursier/use-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "use-timer",
"version": "1.2.0",
"description": "A timer hook for React",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prettify": "prettier 'src/**/*.{ts,tsx}' --write",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thibaultboursier/use-timer.git"
},
"keywords": [
"react",
"react-hook",
"react-hooks",
"timer"
],
"author": "Thibault Boursier",
"license": "ISC",
"bugs": {
"url": "https://github.com/thibaultboursier/use-timer/issues"
},
"homepage": "https://github.com/thibaultboursier/use-timer#readme",
"devDependencies": {
"@types/enzyme": "^3.10.4",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@types/react-dom": "^16.9.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"jest": "^24.9.0",
"jsdom": "15.2.1",
"jsdom-global": "3.0.2",
"prettier": "1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"ts-jest": "^24.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"typings": "./lib/index.d.ts"
}