{ "name": "react-table", "version": "2.2.2", "description": "A fast, lightweight, opinionated table and datagrid built on React", "license": "MIT", "homepage": "https://github.com/tannerlinsley/react-table#readme", "repository": { "type": "git", "url": "git+https://github.com/tannerlinsley/react-table.git" }, "keywords": [ "react", "table", "react-table", "datagrid" ], "main": "lib/index.js", "files": [ "lib/", "react-table.js", "react-table.css", "media/*.png" ], "scripts": { "build:node": "babel src --out-dir lib --source-maps inline", "build:css": "rm -rf react-table.css && stylus src/index.styl --use ./node_modules/nib/lib/nib.js --compress -o react-table.css", "watch": "onchange 'src/**' -i -- npm-run-all build:*", "test": "standard", "umd": "rm -rf react-table.js && browserify lib/index.js -s reactTable -x react -t babelify -g uglifyify -o react-table.js", "prepublish": "npm-run-all build:* && npm run umd", "postpublish": "git push --tags" }, "dependencies": { "classnames": "^2.2.5" }, "peerDependencies": { "react": "^15.3.1" }, "devDependencies": { "babel-cli": "6.14.0", "babel-eslint": "6.1.2", "babel-preset-es2015": "6.14.0", "babel-preset-react": "6.11.1", "babel-preset-stage-2": "6.13.0", "babelify": "^7.3.0", "browserify": "13.1.0", "nib": "^1.1.2", "npm-run-all": "^3.1.1", "onchange": "^3.0.2", "standard": "8.0.0", "stylus": "^0.54.5", "uglifyify": "3.0.3" }, "browserify-shim": { "react": "global:React" }, "standard": { "parser": "babel-eslint", "ignore": [ "node_modules", "dist", "lib", "example", "react-table.js" ] }, "babel": { "presets": [ "es2015", "stage-2", "react" ] } }