UNPKG

1.8 kBJSONView Raw
1{
2 "name": "react-dnd-touch-backend",
3 "version": "0.7.0",
4 "description": "Touch backend for react-dnd",
5 "main": "dist/Touch.js",
6 "scripts": {
7 "clean": "rimraf dist/**/* examples/*.browserified.js",
8 "js-dev": "browserify ./examples/js/index.jsx -o ./examples/main.browserified.js",
9 "js-dev-drop": "browserify ./examples/dropTarget/js/index.jsx -o ./examples/dropTarget/main.browserified.js",
10 "compile": "babel src/Touch.js --out-file dist/Touch.js",
11 "lint": "eslint --quiet --cache . --ext .js --ext .jsx",
12 "prepublishOnly": "npm run clean && npm run compile",
13 "test": "npm run clean && npm run lint"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/yahoo/react-dnd-touch-backend.git"
18 },
19 "keywords": [
20 "react",
21 "drag",
22 "drop",
23 "touch",
24 "react-dnd"
25 ],
26 "author": "Long Ho <holevietlong@gmail.com>",
27 "license": "MIT",
28 "bugs": {
29 "url": "https://github.com/yahoo/react-dnd-touch-backend/issues"
30 },
31 "homepage": "https://github.com/yahoo/react-dnd-touch-backend#readme",
32 "dependencies": {
33 "invariant": "^2.2.4"
34 },
35 "peerDependencies": {
36 "react-dnd": "^6.0.0"
37 },
38 "devDependencies": {
39 "@babel/cli": "^7.2.0",
40 "@babel/core": "^7.2.0",
41 "@babel/plugin-proposal-object-rest-spread": "^7.2.0",
42 "@babel/preset-env": "^7.2.0",
43 "@babel/preset-react": "^7.0.0",
44 "babel-eslint": "^10.0.1",
45 "babelify": "10",
46 "browserify": "^16.2.3",
47 "classnames": "^2.2.6",
48 "eslint": "^5.9.0",
49 "eslint-plugin-react": "^7.11.1",
50 "immutable": "^3.8.2",
51 "prop-types": "^15.6.2",
52 "react": "^16.6.3",
53 "react-dnd": "7",
54 "react-dom": "^16.6.3",
55 "rimraf": "^2.6.2"
56 },
57 "browserify": {
58 "transform": [
59 [
60 "babelify"
61 ]
62 ]
63 }
64}