forked from react-dnd/react-dnd-html5-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "@spredfast/react-dnd-html5-backend",
"version": "2.2.0",
"description": "HTML5 backend for React DnD",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack",
"build": "npm run build:lib && npm run build:umd",
"lint": "eslint .",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run lint && npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-dnd-html5-backend.git"
},
"author": "Dan Abramov <[email protected]> (https://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-dnd-html5-backend/issues"
},
"homepage": "https://github.com/gaearon/react-dnd-html5-backend",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"expect.js": "^0.3.1",
"mocha": "^2.0.1",
"rimraf": "^2.4.3",
"webpack": "^1.12.2"
},
"dependencies": {
"lodash": "^4.2.0"
},
"peerDependencies": {
"react-dnd": "^2.0.0"
}
}