All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
107 lines
3.2 KiB
JSON
107 lines
3.2 KiB
JSON
{
|
|
"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 <tom@tomkp.com>",
|
|
"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"
|
|
}
|
|
}
|