-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 998 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 998 Bytes
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
{
"name": "react-cool-layout",
"version": "1.6.0",
"description": "A react based layout engine that does not need to understand CSS",
"main": "lib/index.js",
"scripts": {
"dev": "parcel examples/index.html",
"build": "babel src --out-dir ./lib --presets=es2015,stage-0,react --plugins=add-module-exports"
},
"author": "https://github.com/zinkey",
"dependencies": {
"mutationobserver-shim": "^0.3.2",
"prop-types": "^15.6.0",
"resize-observer-polyfill": "^1.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"parcel-bundler": "^1.6.2",
"react": "^16.1.1",
"react-dom": "^16.1.1"
},
"homepage": "https://github.com/zinkey/react-cool-layout",
"repository": {
"type": "git",
"url": "https://github.com/zinkey/react-cool-layout.git"
},
"files": [
"lib"
]
}