forked from JedWatson/react-tappable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
{
"name": "react-tappable",
"version": "0.5.101",
"description": "Touch / Tappable Event Handling Component for React",
"main": "lib/TapAndPinchable.js",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-tappable.git"
},
"peerDependencies": {
"react": ">=0.12.0 || ^0.14.0-alpha"
},
"devDependencies": {
"babel-eslint": "^3.1.17",
"eslint": "^0.23.0",
"eslint-plugin-react": "^2.5.2",
"gulp": "^3.9.0",
"react": ">=0.12.0",
"react-component-gulp-tasks": "^0.7.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"bump": "gulp bump",
"bump:major": "gulp bump:major",
"bump:minor": "gulp bump:minor",
"start": "gulp dev",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "gulp publish:examples",
"release": "gulp release",
"test": "echo \"no tests yet\" && exit 0",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react-component",
"tap",
"tappable",
"touch",
"mobile"
]
}