forked from pravindia/react-hammerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "@win11react/react-hammerjs",
"version": "1.0.2",
"description": "ReactJS / HammerJS integration. Support touch events in your React app.",
"main": "lib/Hammer.js",
"jsnext:main": "dist/react-hammerjs.es.js",
"module": "dist/react-hammerjs.es.js",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/win11react/react-hammerjs.git"
},
"dependencies": {
"hammerjs": "^2.0.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-keystone": "^3.0.0",
"eslint-config-keystone-react": "^1.0.0",
"eslint-plugin-react": "^7.4.0",
"prop-types": "^15.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.5"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^17.0 || ^18.0"
},
"scripts": {
"build": "npm run build:clean && npm run build:lib && npm run build:dist",
"build:clean": "rimraf lib dist",
"build:lib": "babel src -d lib",
"build:dist": "rollup --config",
"lint": "eslint src",
"test": "echo \"no tests yet\" && exit 0"
},
"keywords": [
"react",
"react-component",
"tap",
"tappable",
"touch",
"hammer",
"hammerjs",
"mobile"
]
}