orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
48 lines (47 loc) • 1.38 kB
JSON
{
"name": "babel-eslint",
"version": "7.0.0",
"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.15.0",
"babel-types": "^6.15.0",
"babylon": "^6.11.2",
"lodash.pickby": "^4.6.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",
"test-ci": "npm test && npm run lint",
"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",
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/babel/babel-eslint/issues"
},
"homepage": "https://github.com/babel/babel-eslint",
"devDependencies": {
"eslint": "^3.6.0",
"eslint-config-babel": "^1.0.2",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.5.0",
"espree": "^3.3.1",
"mocha": "^3.0.0"
}
}