-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
37 lines (37 loc) · 1020 Bytes
/
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
{
"name": "swipe-listener",
"version": "1.3.1",
"description": "Zero-dependency, minimal swipe-gesture listener for the web.",
"main": "dist/swipe-listener.min.js",
"scripts": {
"build": "babel index.js --out-file dist/swipe-listener.js && babel-minify dist/swipe-listener.js --out-file dist/swipe-listener.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umanghome/swipe-listener.git"
},
"keywords": [
"swipe",
"gesture",
"event",
"listener",
"js",
"web",
"dom",
"gestures"
],
"author": "umanghome",
"license": "MIT",
"bugs": {
"url": "https://github.com/umanghome/swipe-listener/issues"
},
"homepage": "https://github.com/umanghome/swipe-listener",
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.25.2",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.25.4",
"babel-minify": "0.5.2"
}
}