2016-07-08 14:23:39 -04:00

42 lines
1.2 KiB
JSON

{
"name": "babel-eslint",
"version": "6.1.1",
"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-traverse": "^6.0.20",
"babel-types": "^6.0.19",
"babylon": "^6.0.18",
"lodash.assign": "^4.0.0",
"lodash.pickby": "^4.0.0"
},
"scripts": {
"bootstrap": "git submodule update --init && cd eslint && npm install",
"eslint": "cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js",
"test": "mocha",
"lint": "eslint index.js babylon-to-espree test",
"fix": "eslint index.js babylon-to-espree test --fix",
"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",
"bugs": {
"url": "https://github.com/babel/babel-eslint/issues"
},
"homepage": "https://github.com/babel/babel-eslint",
"devDependencies": {
"eslint": "^2.4.0",
"espree": "^3.0.0",
"mocha": "^2.3.3"
}
}