Compare commits

...
Author SHA1 Message Date
Tanner Linsley 2d247eafe8 6.7.1 2017-10-27 13:44:45 -06:00
+21 -8
View File
@@ -1,21 +1,30 @@
{ {
"name": "react-table", "name": "react-table",
"version": "6.7.0", "version": "6.7.1",
"description": "description": "A fast, lightweight, opinionated table and datagrid built on React",
"A fast, lightweight, opinionated table and datagrid built on React",
"license": "MIT", "license": "MIT",
"homepage": "https://github.com/react-tools/react-table#readme", "homepage": "https://github.com/react-tools/react-table#readme",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/react-tools/react-table.git" "url": "git+https://github.com/react-tools/react-table.git"
}, },
"keywords": ["react", "table", "react-table", "datagrid"], "keywords": [
"react",
"table",
"react-table",
"datagrid"
],
"main": "lib/index.js", "main": "lib/index.js",
"files": ["src/", "lib/", "react-table.js", "react-table.css", "media/*.png"], "files": [
"src/",
"lib/",
"react-table.js",
"react-table.css",
"media/*.png"
],
"scripts": { "scripts": {
"build:node": "babel src --out-dir lib --source-maps inline", "build:node": "babel src --out-dir lib --source-maps inline",
"build:css": "build:css": "rimraf react-table.css && stylus src/index.styl --compress -o react-table.css && yarn run css:autoprefix",
"rimraf react-table.css && stylus src/index.styl --compress -o react-table.css && yarn run css:autoprefix",
"css:autoprefix": "postcss --use autoprefixer react-table.css -r", "css:autoprefix": "postcss --use autoprefixer react-table.css -r",
"watch": "npm-run-all --parallel watch:*", "watch": "npm-run-all --parallel watch:*",
"watch:node": "onchange 'src/**/*.js' -i -- npm run build:node", "watch:node": "onchange 'src/**/*.js' -i -- npm run build:node",
@@ -62,6 +71,10 @@
"webpack": "^2.5.1" "webpack": "^2.5.1"
}, },
"babel": { "babel": {
"presets": ["es2015", "stage-2", "react"] "presets": [
"es2015",
"stage-2",
"react"
]
} }
} }