Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
Reorganize package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Nov 7, 2018
1 parent 820c3aa commit 2a0cb9d
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,16 @@
"name": "babel-eslint",
"version": "10.0.1",
"description": "Custom parser for ESLint",
"main": "lib/index.js",
"files": [
"lib"
],
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/babel/babel-eslint.git"
},
"dependencies": {
"@babel/core": "^7.1.5",
"@babel/parser": "^7.1.5",
"eslint-scope": "3.7.1",
"eslint-visitor-keys": "^1.0.0"
"bugs": {
"url": "https://github.com/babel/babel-eslint/issues"
},
"homepage": "https://github.com/babel/babel-eslint",
"scripts": {
"test": "npm run lint && npm run test-only",
"test-only": "mocha && mocha --require test/fixtures/preprocess-to-patch.js",
Expand All @@ -25,18 +21,24 @@
"preversion": "npm test",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"
},
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/babel/babel-eslint/issues"
},
"homepage": "https://github.com/babel/babel-eslint",
"main": "lib/index.js",
"files": [
"lib"
],
"peerDependencies": {
"@babel/core": ">=7.1.5",
"@babel/parser": ">=7.1.5",
"eslint": ">= 4.12.1"
},
"dependencies": {
"@babel/core": "^7.1.5",
"@babel/parser": "^7.1.5",
"eslint-scope": "3.7.1",
"eslint-visitor-keys": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"dedent": "^0.7.0",
Expand Down

0 comments on commit 2a0cb9d

Please sign in to comment.