forked from azuqua/react-dnd-scrollzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@loomhq/react-dnd-scrollzone",
"version": "8.0.1",
"description": "[forked] A cross browser solution to scrolling during drag and drop.",
"engines": {
"node": "^20.14.0",
"yarn": "^1.22.22"
},
"packageManager": "yarn@1.22.22",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint src",
"pretest": "npm run lint",
"test": "mocha test",
"prepublish": "in-publish && npm run build || not-in-publish",
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"postpublish": "git push origin main --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loomhq/react-dnd-scrollzone.git"
},
"bugs": {
"url": "https://github.com/loomhq/react-dnd-scrollzone/issues"
},
"keywords": [
"react",
"drag",
"drop",
"scroll",
"dnd",
"drag and drop",
"polyfill",
"auto"
],
"author": {
"name": "Claudio Semeraro",
"email": "claudio@loom.com",
"url": "https://loom.com"
},
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^3.1.0",
"lodash.throttle": "^4.0.1",
"prop-types": "^15.5.9",
"raf": "^3.2.0",
"react": "^16.10.2",
"react-display-name": "^0.2.4",
"react-dom": "^16.10.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"in-publish": "^2.0.0",
"mocha": "^6.2.1",
"react-dnd": "^9.4.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0"
},
"peerDependencies": {
"react-dnd": "^9.0.0"
},
"files": [
"lib",
"README.md"
],
"publishConfig": {
"access": "restricted"
},
"mocha": {
"require": [
"@babel/register",
"test/setup"
],
"check-leaks": true,
"throw-deprecation": true
}
}