forked from zesik/react-splitter-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "react-splitter-layout",
"version": "3.0.1",
"description": "A simple split layout for React and modern browsers",
"keywords": [
"react",
"layout",
"split",
"splitter"
],
"author": "Yang Liu <hi@zesik.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zesik/react-splitter-layout"
},
"bugs": {
"url": "https://github.com/zesik/react-splitter-layout/issues"
},
"main": "lib/index.js",
"files": [
"lib/*"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"jsdom": "^11.3.0",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.0.0",
"style-loader": "^0.21.0"
},
"peerDependencies": {
"prop-types": "^15.5.0",
"react": "^15.5.0 || ^16.0.0"
},
"scripts": {
"prepublish": "webpack --progress -p",
"build": "webpack --progress",
"lint": "eslint '@(src|test|example)/**/*.js?'",
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
},
"setupFiles": [
"raf/polyfill",
"./test/setup.js"
]
}
}