forked from azuqua/react-dnd-scrollzone
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
74 lines (74 loc) · 2.02 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
{
"name": "frontend-collective-react-dnd-scrollzone",
"version": "1.0.2",
"description": "A cross browser solution to scrolling during drag and drop.",
"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 test && 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 master --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/frontend-collective/react-dnd-scrollzone"
},
"bugs": {
"url": "http://github.com/frontend-collective/react-dnd-scrollzone/issues"
},
"keywords": [
"react",
"drag",
"drop",
"scroll",
"dnd",
"drag and drop",
"polyfill",
"auto"
],
"author": {
"name": "Nicholas Clawson",
"email": "[email protected]",
"url": "nickclaw.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-display-name": "^0.2.0"
},
"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": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"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": "^5.2.0",
"react": "^16.3.0",
"react-dnd": "^7.3.0",
"react-dom": "^16.3.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dnd": "^7.3.0",
"react-dom": "^16.3.0"
}
}