From bb2f969db90a951a5c42ee3eca3809672aed77e6 Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Fri, 27 Oct 2017 13:44:38 -0600 Subject: [PATCH] Fix: eslint-config moved to dev deps --- package.json | 33 ++++++++++----------------------- 1 file changed, 10 insertions(+), 23 deletions(-) diff --git a/package.json b/package.json index 061a804..bb4651d 100644 --- a/package.json +++ b/package.json @@ -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"] } }