This repository has been archived by the owner on Jun 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "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-all --parallel build:*",
"lint": "eslint .",
"unit_test": "mocha --require babel-register --recursive",
"unit_test:watch": "npm run unit_test -- --watch",
"test": "npm-run-all clean --parallel lint build unit_test",
"develop": "npm run unit_test:watch",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/react-dnd/react-dnd-html5-backend.git"
},
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-dnd/react-dnd-html5-backend/issues"
},
"homepage": "https://github.com/react-dnd/react-dnd-html5-backend",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"expect.js": "^0.3.1",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.1",
"react-dnd": "^2.2.0",
"rimraf": "^2.4.3",
"webpack": "^1.12.2"
},
"dependencies": {
"lodash": "^4.2.0"
},
"peerDependencies": {
"react-dnd": "^2.2.0"
}
}