-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 1.17 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-component-resizable",
"version": "2.0.1",
"description": "React component to react on resize event using scroll trick",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"engines": {
"node": ">=6.11.5"
},
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"build:demo": "nwb build-demo",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "nwb test",
"test:coverage": "nwb test --coverage",
"test:watch": "nwb test --server"
},
"dependencies": {},
"peerDependencies": {
"react": ">=16.x"
},
"devDependencies": {
"chai": "^4.1.2",
"nwb": "^0.22.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"sinon": "^5.0.3"
},
"author": "@nrako",
"homepage": "https://github.com/nrako/react-component-resizable",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nrako/react-component-resizable.git"
},
"keywords": [
"react-component",
"react",
"component",
"resize",
"onresize"
]
}