58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "babel-eslint",
|
|
"version": "8.0.0-alpha.12",
|
|
"description": "Custom parser for ESLint",
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
"babylon-to-espree"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/babel/babel-eslint.git"
|
|
},
|
|
"dependencies": {
|
|
"babel-code-frame": "7.0.0-alpha.12",
|
|
"babel-traverse": "7.0.0-alpha.12",
|
|
"babel-types": "7.0.0-alpha.12",
|
|
"babylon": "7.0.0-beta.13"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run lint && npm run test-only",
|
|
"test-only": "mocha",
|
|
"lint": "eslint index.js babylon-to-espree test",
|
|
"fix": "eslint index.js babylon-to-espree test --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'"
|
|
},
|
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/babel/babel-eslint/issues"
|
|
},
|
|
"homepage": "https://github.com/babel/babel-eslint",
|
|
"devDependencies": {
|
|
"babel-eslint": "^7.0.0",
|
|
"dedent": "^0.7.0",
|
|
"eslint": "^3.18.0",
|
|
"eslint-config-babel": "^7.0.1",
|
|
"eslint-plugin-flowtype": "^2.30.3",
|
|
"eslint-plugin-prettier": "^2.1.2",
|
|
"espree": "^3.4.0",
|
|
"husky": "^0.13.2",
|
|
"lint-staged": "^3.6.1",
|
|
"mocha": "^3.0.0",
|
|
"prettier": "1.4.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --format=codeframe --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|