forked from leefsmp/Re-Flex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.41 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.41 KB
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
{
"name": "react-reflex",
"version": "2.2.8",
"description": "Flex layout component for advanced React web applications",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "./index.d.ts",
"files": [
"dist",
"styles.css"
],
"scripts": {
"build-demo-dev": "webpack --watch --config ./webpack/demo/development.webpack.config",
"build-demo": "webpack --config ./webpack/demo/production.webpack.config",
"build-dev": "webpack --config ./webpack/lib/development.webpack.config",
"build-lib-umd-dev": "webpack --config ./webpack/lib/development.webpack.config",
"build-lib-umd": "webpack --config ./webpack/lib/production.webpack.config",
"build-lib-commonjs": "rimraf dist/commonjs && BABEL_ENV=commonjs babel src/lib --out-dir=dist/commonjs",
"build-lib-es": "rimraf dist/es && BABEL_ENV=es babel src/lib --out-dir=dist/es",
"build-css": "rimraf styles.css && node-sass src/lib/reflex-styles.scss styles.css",
"build": "npm run build-css && npm run build-lib-commonjs && npm run build-lib-es && npm run build-lib-umd && npm run build-lib-umd-dev && npm run build-demo",
"prepublish": "npm run build"
},
"author": "Philippe Leefsma",
"license": "MIT",
"keywords": [
"flex",
"layout",
"react",
"reactjs",
"react-component",
"pane",
"panel",
"split-pane",
"split-panel",
"resize",
"splitter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leefsmp/Re-Flex.git"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.0-beta.6",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.16.0",
"eslint": "^0.21.1",
"eslint-plugin-react": "^2.3.0",
"node-sass": "^3.13.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.6.1",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.4",
"webpack": "^2.2.1"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.5.8",
"react-measure": "^2.0.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}