-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "touches",
"version": "1.2.2",
"description": "simplified touch/mouse events for flick and swipe",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"events": "^1.0.2"
},
"devDependencies": {
"browserify": "^8.1.3",
"budo": "^5.0.0-beta",
"dom-css": "^1.0.6",
"domready": "^1.0.7",
"garnish": "^3.0.0",
"standard": "^5.2.2",
"uglify-js": "^2.4.16",
"wzrd": "^1.2.1",
"xtend": "^4.0.0"
},
"scripts": {
"start": "budo demo.js:bundle.js --host=`internal-ip` --live | garnish",
"build": "browserify demo.js | uglifyjs -cm > bundle.js",
"test": "standard"
},
"keywords": [
"touch",
"drag",
"unified",
"mouse",
"input",
"pointer",
"move",
"mousemove",
"touchmove",
"touchstart",
"touchend",
"mouseup",
"mousedown"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/touches.git"
},
"homepage": "https://github.com/Jam3/touches",
"bugs": {
"url": "https://github.com/Jam3/touches/issues"
}
}