forked from enjoylife/react-draggable
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "react-draggable2",
"version": "0.7.0-alpha1",
"description": "React draggable component",
"main": "lib/draggable.js",
"scripts": {
"test": "karma start --single-run",
"prepublish": "webpack lib/draggable.js dist/react-draggable.js && webpack --optimize-minimize lib/draggable.js dist/react-draggable.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mikepb/react-draggable.git"
},
"keywords": [
"react",
"draggable",
"react-component"
],
"author": "Matt Zabriskie",
"contributors": [
{
"name": "Michael Phan-Ba",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mikepb/react-draggable/issues"
},
"homepage": "https://github.com/mikepb/react-draggable",
"devDependencies": {
"jasmine": "^2.3.2",
"jasmine-core": "^2.3.4",
"jsx-loader": "*",
"karma": "^0.13.3",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.1",
"karma-jasmine": "^0.3.6",
"karma-webpack": "^1.7.0",
"node-libs-browser": "^0.5.2",
"react": "0.14.0-rc1",
"react-dom": "^0.14.0-rc1",
"react-tools": "^0.13.3",
"webpack": "^1.12.2"
},
"dependencies": {
"classnames": "^2.1.5",
"object-assign": "^4.0.1",
"react-addons-pure-render-mixin": "^0.14.0-rc1",
"react-addons-test-utils": "^0.14.0-rc1"
}
}