react-table/package.json
Tanner Linsley 4a18536da7 2.1.0
2016-10-24 08:53:31 -06:00

61 lines
1.5 KiB
JSON

{
"name": "react-table",
"version": "2.1.0",
"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": "react-table.js",
"scripts": {
"build:js": "rm -rf react-table.js && browserify src/index.js -s reactTable -u react -t babelify -g uglifyify -o react-table.js",
"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",
"prepublish": "npm-run-all build:*"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.16.4",
"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",
"onchange": "^3.0.2",
"react": "15.3.1",
"standard": "8.0.0",
"stylus": "^0.54.5",
"uglifyify": "3.0.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules",
"dist",
"example",
"react-table.js"
]
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
}
}