UNPKG

1.58 kBJSONView Raw
1{
2 "name": "babel-eslint",
3 "version": "8.1.0",
4 "description": "Custom parser for ESLint",
5 "main": "lib/index.js",
6 "files": [
7 "lib"
8 ],
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/babel/babel-eslint.git"
12 },
13 "dependencies": {
14 "@babel/code-frame": "7.0.0-beta.31",
15 "@babel/traverse": "7.0.0-beta.31",
16 "@babel/types": "7.0.0-beta.31",
17 "babylon": "7.0.0-beta.31",
18 "eslint-scope": "~3.7.1",
19 "eslint-visitor-keys": "^1.0.0"
20 },
21 "scripts": {
22 "test": "npm run lint && npm run test-only",
23 "test-only": "mocha",
24 "lint": "eslint index.js babylon-to-espree test",
25 "fix": "eslint index.js babylon-to-espree test --fix",
26 "precommit": "lint-staged",
27 "preversion": "npm test",
28 "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"
29 },
30 "author": "Sebastian McKenzie <sebmck@gmail.com>",
31 "license": "MIT",
32 "engines": {
33 "node": ">=4"
34 },
35 "bugs": {
36 "url": "https://github.com/babel/babel-eslint/issues"
37 },
38 "homepage": "https://github.com/babel/babel-eslint",
39 "devDependencies": {
40 "babel-eslint": "^8.0.0",
41 "dedent": "^0.7.0",
42 "eslint": "^4.12.1",
43 "eslint-config-babel": "^7.0.1",
44 "eslint-plugin-flowtype": "^2.30.3",
45 "eslint-plugin-prettier": "^2.1.2",
46 "espree": "^3.4.0",
47 "husky": "^0.14.0",
48 "lint-staged": "^4.0.0",
49 "mocha": "^4.0.0",
50 "prettier": "^1.4.4"
51 },
52 "lint-staged": {
53 "*.js": [
54 "eslint --format=codeframe --fix",
55 "git add"
56 ]
57 }
58}