-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.4 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": "tinygesture",
"version": "3.0.0",
"description": "Very small gesture recognizer for JavaScript. Swipe, pan, tap, doubletap, and longpress.",
"main": "dist/TinyGesture.js",
"browser": "dist/TinyGesture.js",
"type": "module",
"types": "dist/TinyGesture.d.ts",
"scripts": {
"prepare": "husky install && npm run clean && npm run build",
"clean": "test -d dist && rm -r dist || true",
"build": "tsc",
"watch": "tsc --watch",
"dev": "serve .",
"lint:format": "npx prettier --write --ignore-unknown .",
"lint:check": "npx prettier --check --ignore-unknown .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/tinygesture.git"
},
"keywords": [
"gesture",
"gestures",
"recognizer",
"touch",
"swipe",
"pan",
"tap",
"longpress",
"pinch",
"rotate",
"event"
],
"author": "Hunter Perrin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/tinygesture/issues"
},
"homepage": "https://sciactive.github.io/tinygesture/",
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.0.3",
"serve": "^14.2.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}