package.json 1.73 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
{
  "name": "jsx-ast-utils",
  "version": "2.2.3",
  "description": "AST utility module for statically analyzing JSX",
  "main": "lib/index.js",
  "scripts": {
    "prebuild": "rimraf lib",
    "build": "babel src --out-dir lib",
    "prepublish": "not-in-publish || (npm test && npm run build)",
    "coveralls": "cat ./reports/lcov.info | coveralls",
    "lint": "eslint .",
    "pretest": "npm run lint",
    "test": "npm run tests-only --",
    "tests-only": "jest --coverage",
    "test:watch": "npm test -- --watch"
  },
  "devDependencies": {
    "@babel/parser": "^7.4.4",
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.3",
    "babel-eslint": "^10.0.2",
    "babel-jest": "^20.0.3",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-plugin-transform-replace-object-assign": "^1.0.0",
    "babel-polyfill": "^6.26.0",
    "babel-preset-env": "^1.7.0",
    "babylon": "^6.18.0",
    "coveralls": "^3.0.4",
    "eslint": "^6.0.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-plugin-import": "^2.17.2",
    "flow-parser": "^0.102.0",
    "in-publish": "^2.0.0",
    "jest": "^20.0.4",
    "jest-cli": "^20.0.4",
    "object.entries": "^1.1.0",
    "object.fromentries": "^2.0.1",
    "rimraf": "^2.6.3"
  },
  "engines": {
    "node": ">=4.0"
  },
  "keywords": [
    "jsx",
    "ast",
    "lint",
    "eslint"
  ],
  "author": "Ethan Cohen",
  "repository": {
    "type": "git",
    "url": "https://github.com/evcohen/jsx-ast-utils"
  },
  "license": "MIT",
  "jest": {
    "coverageReporters": [
      "lcov"
    ],
    "coverageDirectory": "reports",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "helper.js"
    ]
  },
  "dependencies": {
    "array-includes": "^3.0.3",
    "object.assign": "^4.1.0"
  }
}