-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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-swipe-hook",
"version": "2.0.0",
"description": "A simple and easy to use tiny library that provides useSwipe hook to use with React that enables swipe gestures for touch screens",
"main": "lib/umd/index.js",
"browser": "lib/umd/index.js",
"module": "lib/esm/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"start": "rollup --config ./rollup.config.js -w",
"prepublishOnly": "rm -rf lib && npm run build",
"postbuild": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajatkantinandi/useSwipe.git"
},
"files": [
"/lib"
],
"keywords": [
"touch",
"swipe",
"drag",
"react",
"hooks"
],
"author": "Rajat Kanti Nandi",
"license": "ISC",
"bugs": {
"url": "https://github.com/rajatkantinandi/useSwipe/issues"
},
"homepage": "https://github.com/rajatkantinandi/useSwipe#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rollup": "^2.41.2",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}