{
  "name": "are-you-es5",
  "version": "2.1.2",
  "description": "A package to help you find out which of your `node_modules` aren't ES5 so you can add them to your transpilation steps.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/obahareth/are-you-es5.git",
  "author": "Omar Bahareth <omar@omar.engineer>",
  "license": "MIT",
  "private": false,
  "bin": {
    "are-you-es5": "./dist/cli.js"
  },
  "dependencies": {
    "acorn": "^6.0.6",
    "array-flatten": "^2.1.0",
    "commander": "^2.19.0",
    "find-up": "^4.1.0"
  },
  "devDependencies": {
    "@types/jest": "^24.0.20",
    "@types/mock-fs": "^3.6.30",
    "@types/node": "^10.12.21",
    "jest": "^24.9.0",
    "mock-fs": "^4.10.1",
    "prettier": "^1.16.0",
    "ts-jest": "^24.1.0",
    "ts-node": "^8.0.2",
    "tslint": "^5.12.1",
    "tslint-config-prettier": "^1.17.0",
    "typescript": "^3.5.0"
  },
  "engines": {
    "node": ">=10.0"
  },
  "keywords": [
    "javascript",
    "transpiling",
    "bundling",
    "es5",
    "webpack",
    "babel"
  ],
  "scripts": {
    "build": "tsc",
    "format": "yarn prettier:check --write",
    "lint": "tslint \"src/**/*.ts\"",
    "lint:fix": "yarn format && yarn lint --fix",
    "prepublish": "yarn build",
    "prettier:check": "prettier --check \"{src,tests}/**/*.ts\"",
    "start": "yarn ts-node --files ./src/index.ts check $(pwd)",
    "test": "yarn jest"
  }
}
