forked from pmndrs/use-gesture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.89 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-use-gesture",
"version": "9.1.3",
"description": "React hook for receiving gestures https://use-gesture.netlify.app",
"main": "dist/index.js",
"module": "dist/reactusegesture.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --name ReactUseGesture --format cjs,esm,umd",
"lint": "tsdx lint",
"prepare": "yarn build",
"docs": "yarn --cwd ./documentation start",
"test": "tsdx test",
"test:watch": "tsdx test --watchAll",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"size-limit": [
{
"path": "dist/reactusegesture.cjs.production.min.js",
"limit": "9 KB"
},
{
"path": "dist/reactusegesture.esm.js",
"limit": "10 KB"
}
],
"jest": {
"testEnvironment": "jsdom",
"roots": [
"./src",
"./test"
],
"setupFilesAfterEnv": [
"./setupPointerEvent.js"
],
"setupFiles": [
"@testing-library/react/dont-cleanup-after-each"
]
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/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/pmndrs/react-use-gesture/issues"
},
"homepage": "https://use-gesture.netlify.app",
"peerDependencies": {
"react": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@size-limit/preset-small-lib": "^4.9.2",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.11",
"@storybook/addons": "^6.1.11",
"@storybook/react": "^6.1.11",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.3.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"react-spring": "^9.0.0-rc.3",
"size-limit": "^4.9.2",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {}
}