-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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": "react-resizable-component",
"version": "1.1.0",
"description": "A simple React resizable component that comes with features that you might need.",
"main": "dist/ResizableComponent.js",
"scripts": {
"build": "babel src --presets babel-preset-env --plugins=transform-class-properties,transform-react-jsx,transform-react-remove-prop-types --out-dir dist",
"prepublish": "npm run build"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"keywords": [
"react",
"js",
"resizeable",
"box",
"component",
"resize",
"react-component"
],
"browserify": {
"transform": [
"reactify"
]
},
"author": "Delon Wong Her Laang <[email protected]> (https://github.com/wongherlung)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.9",
"babel-preset-env": "^1.6.0",
"react-tools": "^0.13.3"
}
}