UNPKG

@mnmtanish/react-split-pane

Version:
85 lines (84 loc) 2.41 kB
{ "name": "@mnmtanish/react-split-pane", "description": "React split-pane component", "main": "index.js", "version": "0.1.31", "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" ], "dependencies": { "react-vendor-prefix": "^0.0.1" }, "peerDependencies": { "react": "^0.14.8", "react-dom": "^0.14.8" }, "devDependencies": { "babel-cli": "^6.6.5", "babel-eslint": "^6.0.0", "babel-plugin-add-module-exports": "^0.1.2", "babel-plugin-transform-object-assign": "^6.5.0", "babel-preset-es2015": "^6.6.0", "babel-preset-react": "^6.5.0", "babelify": "^7.2.0", "browserify": "^13.0.0", "chai": "^3.5.0", "chai-spies": "^0.7.1", "coveralls": "^2.11.9", "eslint": "^2.5.3", "eslint-config-airbnb": "^6.2.0", "eslint-plugin-react": "^4.2.3", "express": "^4.13.4", "mochify": "^2.17.0", "mochify-istanbul": "^2.4.1", "react": "^0.14.8", "react-addons-test-utils": "^0.14.8", "react-dom": "^0.14.8", "surge": "^0.17.7", "watchify": "^3.7.0" }, "scripts": { "compile": "babel -d lib/ src/", "compile:watch": "babel -w -d lib/ src/", "prepublish": "npm run compile", "test": "npm run compile && mochify -R spec", "test:watch": "npm run compile:watch & mochify -R spec --watch", "test:coverage": "node cover.js && cat lcov.info | coveralls && rm lcov.info", "lint": "eslint src/", "demo": "npm run compile && browserify demo/Example.js -d -t -o demo/bundle.js", "demo:watch": "npm run compile:watch & watchify demo/Example.js -d -t -o demo/bundle.js", "demo:publish": "npm run compile && browserify demo/Example.js -d -t -o demo/bundle.js && surge demo react-split-pane.surge.sh", "release:patch": "npm test && npm run compile && npm version patch && git push && npm publish" }, "browserify": { "transform": [ [ "babelify" ] ] }, "babel": { "presets": [ "react", "es2015" ], "plugins": [ "add-module-exports", "transform-object-assign" ] } }