• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "author": {
3    "name": "Sebastian McKenzie",
4    "email": "sebmck@gmail.com"
5  },
6  "bugs": {
7    "url": "https://github.com/babel/babel-eslint/issues"
8  },
9  "bundleDependencies": false,
10  "dependencies": {
11    "@babel/code-frame": "^7.0.0",
12    "@babel/parser": "^7.0.0",
13    "@babel/traverse": "^7.0.0",
14    "@babel/types": "^7.0.0",
15    "eslint-visitor-keys": "^1.0.0",
16    "resolve": "^1.12.0"
17  },
18  "deprecated": false,
19  "description": "Custom parser for ESLint",
20  "devDependencies": {
21    "babel-eslint": "^8.2.6",
22    "dedent": "^0.7.0",
23    "eslint": "^5.6.0",
24    "eslint-config-babel": "^7.0.1",
25    "eslint-plugin-flowtype": "^2.30.3",
26    "eslint-plugin-import": "^2.14.0",
27    "eslint-plugin-prettier": "^2.1.2",
28    "espree": "^3.5.2",
29    "husky": "^1.0.0-rc.13",
30    "lint-staged": "^7.2.2",
31    "mocha": "^5.0.1",
32    "prettier": "^1.4.4"
33  },
34  "engines": {
35    "node": ">=6"
36  },
37  "files": [
38    "lib"
39  ],
40  "homepage": "https://github.com/babel/babel-eslint",
41  "license": "MIT",
42  "lint-staged": {
43    "*.js": [
44      "eslint --format=codeframe --fix",
45      "git add"
46    ]
47  },
48  "main": "lib/index.js",
49  "name": "babel-eslint",
50  "peerDependencies": {
51    "eslint": ">= 4.12.1"
52  },
53  "repository": {
54    "type": "git",
55    "url": "git+https://github.com/babel/babel-eslint.git"
56  },
57  "scripts": {
58    "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'",
59    "fix": "eslint lib test --fix",
60    "lint": "eslint lib test",
61    "precommit": "lint-staged",
62    "preversion": "npm test",
63    "test": "npm run lint && npm run test-only",
64    "test-only": "mocha && mocha --require test/fixtures/preprocess-to-patch.js"
65  },
66  "version": "10.0.3"
67}