Fix: eslint-config moved to dev deps

This commit is contained in:
Tanner Linsley 2017-10-27 13:44:38 -06:00
parent cd0222fcd2
commit bb2f969db9

View File

@ -1,30 +1,21 @@
{
"name": "react-table",
"version": "6.7.0",
"description": "A fast, lightweight, opinionated table and datagrid built on React",
"description":
"A fast, lightweight, opinionated table and datagrid built on React",
"license": "MIT",
"homepage": "https://github.com/react-tools/react-table#readme",
"repository": {
"type": "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",
"files": [
"src/",
"lib/",
"react-table.js",
"react-table.css",
"media/*.png"
],
"files": ["src/", "lib/", "react-table.js", "react-table.css", "media/*.png"],
"scripts": {
"build:node": "babel src --out-dir lib --source-maps inline",
"build:css": "rimraf react-table.css && stylus src/index.styl --compress -o react-table.css && yarn run css:autoprefix",
"build:css":
"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",
"watch": "npm-run-all --parallel watch:*",
"watch:node": "onchange 'src/**/*.js' -i -- npm run build:node",
@ -38,11 +29,11 @@
"docs:build": "yarn build && cd docs && yarn && yarn build"
},
"dependencies": {
"classnames": "^2.2.5",
"eslint-config-react-tools": "^1.0.10"
"classnames": "^2.2.5"
},
"peerDependencies": {
"react": "^15.x.x || ^16.x.x"
"react": "^15.x.x || ^16.x.x",
"eslint-config-react-tools": "^1.0.10"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
@ -71,10 +62,6 @@
"webpack": "^2.5.1"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
"presets": ["es2015", "stage-2", "react"]
}
}