123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "babel-eslint",
- "version": "8.2.6",
- "description": "Custom parser for ESLint",
- "main": "lib/index.js",
- "files": [
- "lib"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/babel/babel-eslint.git"
- },
- "dependencies": {
- "@babel/code-frame": "7.0.0-beta.44",
- "@babel/traverse": "7.0.0-beta.44",
- "@babel/types": "7.0.0-beta.44",
- "babylon": "7.0.0-beta.44",
- "eslint-scope": "3.7.1",
- "eslint-visitor-keys": "^1.0.0"
- },
- "scripts": {
- "test": "npm run lint && npm run test-only",
- "test-only": "mocha && mocha --require test/fixtures/preprocess-to-patch.js && mocha --require test/fixtures/use-eslint-old.js",
- "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": "^8.0.0",
- "dedent": "^0.7.0",
- "eslint": "npm:eslint@4.19.1",
- "eslint-config-babel": "^7.0.1",
- "eslint-old": "npm:eslint@4.13.1",
- "eslint-plugin-flowtype": "^2.30.3",
- "eslint-plugin-import": "^2.8.0",
- "eslint-plugin-prettier": "^2.1.2",
- "espree": "^3.5.2",
- "husky": "^0.14.0",
- "lint-staged": "^6.1.1",
- "mocha": "^5.0.1",
- "prettier": "^1.4.4"
- },
- "lint-staged": {
- "*.js": [
- "eslint --format=codeframe --fix",
- "git add"
- ]
- }
- }
|