-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
65 lines (65 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
{
"name": "react-tappable",
"version": "1.0.4",
"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": {
"create-react-class": "^15.5.2",
"prop-types": "^15.5.8",
"react": "^0.14 || ^15.0.0-rc || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^4.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"create-react-class": "^15.5.2",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"gulp": "^3.9.1",
"prop-types": "^15.5.8",
"react": "^0.14 || ^15.0.0-rc || ^15.0.0 || ^16.0.0",
"react-component-gulp-tasks": "^0.7.7",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0.0 || ^16.0.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"browserify-shim": {
"create-react-class": "global:createReactClass",
"prop-types": "global:PropTypes",
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"scripts": {
"build": "babel src --out-dir lib",
"dist": "browserify src/TapAndPinchable.js --standalone ReactTappable --transform [ babelify ] > dist/react-tappable.js",
"start": "gulp dev",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"test": "echo \"no tests yet\" && exit 0",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react-component",
"tap",
"tappable",
"touch",
"mobile"
]
}