forked from JedWatson/react-hammerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.31 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
55
56
{
"name": "react-hammerjs",
"version": "0.4.6",
"description": "ReactJS / HammerJS integration. Support touch events in your React app.",
"main": "src/Hammer.js",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-hammerjs.git"
},
"dependencies": {
"hammerjs": "^2.0.6"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"chalk": "^1.1.3",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.1.0",
"gulp-git": "^1.7.1",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"merge-stream": "^1.0.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"vinyl-source-stream": "^1.1.0"
},
"peerDependencies": {
"react": "^0.14.3 || ^15.0.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "NODE_ENV=production gulp build",
"bump": "gulp bump",
"bump:minor": "gulp bump:minor",
"bump:major": "gulp bump:major",
"release": "gulp publish:tag && gulp publish:npm",
"test": "echo \"no tests yet\" && exit 0"
},
"keywords": [
"react",
"react-component",
"tap",
"tappable",
"touch",
"hammer",
"hammerjs",
"mobile"
]
}