forked from react-grid-layout/react-draggable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-draggable",
"version": "3.0.5",
"description": "React draggable component",
"main": "dist/react-draggable.js",
"browser": "dist/react-draggable.js",
"scripts": {
"test": "make test",
"test-debug": "karma start --browsers=Chrome",
"test-ie": "karma start --browsers=IE",
"dev": "make dev",
"build": "make clean build",
"lint": "make lint",
"flow": "flow"
},
"typings": "./typings/index.d.ts",
"types": "./typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mzabriskie/react-draggable.git"
},
"keywords": [
"react",
"draggable",
"react-component"
],
"author": "Matt Zabriskie",
"license": "MIT",
"bugs": {
"url": "https://github.com/mzabriskie/react-draggable/issues"
},
"homepage": "https://github.com/mzabriskie/react-draggable",
"devDependencies": {
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"core-js": "^2.5.1",
"eslint": "^4.12.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.69.0",
"jasmine-core": "^2.8.0",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "1.0.1",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-webpack": "^2.0.6",
"lodash": "^4.17.4",
"open": "0.0.5",
"phantomjs-prebuilt": "^2.1.16",
"power-assert": "^1.4.4",
"pre-commit": "^1.2.2",
"puppeteer": "^0.13.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-frame-component": "^2.0.0",
"react-test-renderer": "^16.1.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-size-snapshot": "^0.2.1",
"rollup-plugin-uglify": "^3.0.0",
"semver": "^5.4.1",
"static-server": "^3.0.0",
"typescript": "^2.6.1",
"uglify-js": "^3.2.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.5"
},
"precommit": [
"lint",
"test"
],
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0"
}
}