Skip to content

Commit

Permalink
fix(package): Move ESLint from dependencies to peerDependencies
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Removed support for eslint versions <2.0.0. Please upgrade to a newer version or add `ecmaFeatures.modules` to your override
  • Loading branch information
jahredhope authored Dec 22, 2017
1 parent 84854c5 commit d83f65a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
"url": "https://github.com/seek-oss/eslint-config-sku/issues"
},
"scripts": {
"test": "eslint --config 'index.js' foo",
"commit": "git-cz",
"commitmsg": "commitlint -e -x '@commitlint/config-angular'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"homepage": "https://github.com/seek-oss/eslint-config-sku#readme",
"dependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-css-modules": "^2.7.1",
Expand All @@ -33,9 +33,13 @@
"@commitlint/config-angular": "^3.1.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.13.1",
"husky": "^0.14.3",
"semantic-release": "^8.0.3"
},
"peerDependencies": {
"eslint": ">=2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
Expand Down

0 comments on commit d83f65a

Please sign in to comment.