75 lines
2.2 KiB
JSON
75 lines
2.2 KiB
JSON
{
|
|
"name": "babel-eslint",
|
|
"version": "11.0.0-beta.0",
|
|
"description": "Custom parser for ESLint",
|
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/babel/babel-eslint.git"
|
|
},
|
|
"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": "cd test && mocha specs && cd -",
|
|
"lint": "eslint .",
|
|
"lint-fix": "npm run lint -- --fix",
|
|
"precommit": "lint-staged",
|
|
"preversion": "npm test",
|
|
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"peerDependencies": {
|
|
"@babel/core": ">=7.2.0",
|
|
"eslint": ">= 4.12.1"
|
|
},
|
|
"dependencies": {
|
|
"eslint-scope": "3.7.1",
|
|
"eslint-visitor-keys": "^1.0.0",
|
|
"semver": "^6.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.2.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
|
"@babel/plugin-proposal-decorators": "^7.1.2",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
|
|
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
"@babel/plugin-syntax-export-default-from": "^7.0.0",
|
|
"@babel/plugin-syntax-export-namespace-from": "^7.0.0",
|
|
"@babel/plugin-syntax-import-meta": "^7.0.0",
|
|
"@babel/plugin-syntax-numeric-separator": "^7.0.0",
|
|
"@babel/preset-env": "^7.1.5",
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-eslint": "^10.0.2",
|
|
"dedent": "^0.7.0",
|
|
"eslint": "^6.0.1",
|
|
"eslint-config-babel": "^9.0.0",
|
|
"eslint-plugin-flowtype": "^3.11.1",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-prettier": "^3.1.0",
|
|
"espree": "^6.0.0",
|
|
"husky": "^1.0.0-rc.13",
|
|
"lint-staged": "^7.2.2",
|
|
"mocha": "^6.1.4",
|
|
"prettier": "^1.4.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --format=codeframe --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|