-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-use-gesture",
"version": "7.0.4",
"description": "React hook for receiving gestures https://use-gesture.netlify.com",
"main": "dist/index.js",
"module": "dist/react-use-gesture.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "yarn build",
"build-docs": "cd ./docusaurus && yarn build",
"test": "tsdx test --env=jsdom",
"test:watch": "tsdx test --env=jsdom --watchAll"
},
"jest": {
"setupFiles": [
"@testing-library/react/dont-cleanup-after-each"
]
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-spring/react-use-gesture.git"
},
"keywords": [
"react",
"hook",
"gesture",
"mouse",
"trackpad",
"touch",
"drag",
"pinch",
"rotate",
"scale",
"zoom",
"scroll",
"wheel"
],
"author": "Paul Henschel",
"contributors": [
"David Bismut (https://github.com/dbismut)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-spring/react-use-gesture/issues"
},
"homepage": "https://use-gesture.netlify.com",
"devDependencies": {
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}