41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "babel-eslint",
|
|
"version": "6.0.0-beta.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": "^3.2.0",
|
|
"lodash.pick": "^3.1.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": "./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test",
|
|
"fix": "./node_modules/eslint/bin/eslint.js index.js babylon-to-espree test --fix",
|
|
"preversion": "npm test"
|
|
},
|
|
"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.0.0",
|
|
"espree": "^3.0.0",
|
|
"mocha": "^2.3.3"
|
|
}
|
|
}
|