forked from tomkp/react-split-pane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-split-pane",
"description": "React split-pane component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"source": "src/index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"version": "0.1.92",
"repository": {
"type": "git",
"url": "https://github.com/tomkp/react-split-pane"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tomkp/react-split-pane"
},
"homepage": "https://github.com/tomkp/react-split-pane",
"author": "tomkp <[email protected]>",
"keywords": [
"react",
"react-component",
"split-pane",
"react-split-pane",
"es6"
],
"scripts": {
"start": "parcel website/index.html",
"prebuild": "yarn run clean",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"clean": "rimraf dist",
"test": "BABEL_ENV=test mochify -R spec --transform babelify",
"test:watch": "BABEL_ENV=test mochify -R spec --watch --transform babelify",
"test:coverage": "BABEL_ENV=test mochify --plugin [ mochify-istanbul --exclude '**/test/**' --report lcovonly ] --transform babelify && cat lcov.info | coveralls && rm lcov.info",
"prettier": "prettier --write '{src,test}/**/*.js'",
"lint": "eslint src test",
"release": "standard-version",
"build:storybook": "build-storybook -o build",
"storybook": "start-storybook -p ${PORT:-3001} -h 0.0.0.0",
"deploy": "gh-pages -d build",
"prepublishOnly": "yarn run test && yarn run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.4",
"react-style-proptype": "^3.2.2"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"@storybook/theming": "^5.3.17",
"@types/react": "^16.9.11",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.0-beta.6",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.7",
"cross-env": "^7.0.0",
"eslint": "^6.6.0",
"eslint-config-fbjs": "^3.1.1",
"eslint-config-prettier": "^6.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-relay": "^1.3.12",
"gh-pages": "^2.1.1",
"husky": "^4.2.3",
"mochify": "^6.6.0",
"mochify-istanbul": "^2.4.2",
"parcel-bundler": "^1.12.4",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"react": ">=15",
"react-dom": "^16.0.0-0",
"react-router-dom": "^5.1.2",
"rimraf": "^3.0.0",
"rollup": "^2.3.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"standard-version": "^7.0.0"
},
"peerDependencies": {
"react": "^16.0.0-0",
"react-dom": "^16.0.0-0"
}
}