forked from react-dnd/dnd-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "dnd-core",
"version": "2.0.2",
"description": "Drag and drop sans the GUI",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib",
"test": "mocha --compilers js:babel/register --recursive",
"test:cov": "istanbul cover ./node_modules/.bin/_mocha -- --compilers js:babel/register --recursive",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/dnd-core.git"
},
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/dnd-core/issues"
},
"homepage": "https://github.com/gaearon/dnd-core",
"devDependencies": {
"babel": "^5.8.23",
"babel-plugin-object-assign": "^1.2.1",
"expect.js": "^0.3.1",
"istanbul": "~0.3.7",
"mocha": "^2.0.1",
"rimraf": "^2.4.3"
},
"dependencies": {
"asap": "^2.0.3",
"invariant": "^2.0.0",
"lodash": "^4.2.0",
"redux": "^3.2.0"
}
}