forked from nrako/react-component-resizable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "react-component-resizable",
"version": "1.0.1",
"description": "React component to react on resize event using scroll trick",
"main": "index.js",
"scripts": {
"test": "karma start --single-run",
"build": "babel ./src/component.js --out-file ./dist/react-component-resizable.js"
},
"repository": {
"type": "git",
"url": "git://github.com/nrako/react-component-resizable.git"
},
"keywords": [
"react",
"component",
"resize",
"onresize",
"react-component"
],
"author": "@nrako",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.13.0",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"karma": "^1.1.1",
"karma-browserify": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "1.0.1",
"karma-mocha": "^1.1.1",
"karma-sinon": "^1.0.4",
"mocha": "^2.2.4",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"sinon": "^1.14.1",
"watchify": "^3.7.0"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
}
}