-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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-timer",
"version": "2.0.1",
"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",
"demo:dev": "parcel ./demo/index.html --open",
"demo:build": "parcel build ./demo/index.html --out-dir demo-dist"
},
"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": {
"@testing-library/react": "11.2.2",
"@types/jest": "24.9.1",
"@types/node": "14.14.10",
"@types/react-dom": "17.0.0",
"jest": "24.9.0",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"parcel-bundler": "1.12.4",
"prettier": "2.1.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"ts-jest": "26.4.4",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.1.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"typings": "./lib/index.d.ts"
}