-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 891 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 891 Bytes
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
{
"name": "touch-tap",
"version": "1.0.2",
"description": "Detect tap with touch events",
"main": "src/TouchTap.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "watchify test/index.js -o test/index.bundle.js",
"browserify": "browserify -s TouchTap src/TouchTap.js | cat src/header.js - > dist/TouchTap.js",
"minify": "uglifyjs dist/TouchTap.js -o dist/TouchTap.min.js -m --comments /@license/",
"build": "npm run browserify && npm run minify",
"test": "lrhs -d test -b"
},
"keywords": [
"touch",
"tap",
"fastbutton",
"fastclick"
],
"author": "Digisfera",
"license": "MIT",
"repository": {
"type" : "git",
"url" : "https://github.com/digisfera/touch-tap.git"
},
"devDependencies": {
"browserify": "^11.1.0",
"lr-http-server": "^0.1.1",
"uglifyjs": "^2.4.10",
"watchify": "^3.4.0"
}
}