{
  "name": "auth0-source-control-extension-tools",
  "version": "4.8.0",
  "description": "Supporting tools for the Source Control extensions",
  "main": "lib/index.js",
  "scripts": {
    "build": "babel src -d lib",
    "prepare": "npm run build",
    "release": "git tag $npm_package_version && git push --tags && npm publish",
    "lint:js": "eslint --ignore-path .gitignore --ignore-pattern webpack .",
    "lint:fix": "eslint --fix --ignore-path .gitignore --ignore-pattern webpack .",
    "test": "npm run test:pre && cross-env NODE_ENV=test nyc mocha tests/mocha.js './tests/**/*.tests.js'",
    "test:watch": "cross-env NODE_ENV=test mocha tests/mocha.js ./tests/**/*.tests.js ./tests/*.tests.js --watch",
    "test:pre": "npm run test:clean && npm run lint:js",
    "test:clean": "rimraf ./coverage && rimraf ./.nyc_output"
  },
  "author": "Auth0",
  "license": "MIT",
  "dependencies": {
    "ajv": "^6.5.2",
    "auth0-extension-tools": "^1.5.0",
    "babel-preset-env": "^1.7.0",
    "dot-prop": "^4.2.0",
    "lodash": "^4.17.21",
    "promise-pool-executor": "^1.1.1",
    "rimraf": "^2.5.4",
    "winston": "^2.2.0"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-eslint": "^8.2.3",
    "babel-plugin-dynamic-import-node": "^1.2.0",
    "babel-plugin-module-resolver": "^3.1.1",
    "babel-plugin-transform-decorators-legacy": "^1.3.5",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-register": "^6.26.0",
    "chai": "^4.1.2",
    "cross-env": "^5.1.6",
    "eslint": "^4.19.1",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-plugin-import": "^2.0.1",
    "mocha": "^5.2.0",
    "nyc": "^12.0.2"
  },
  "nyc": {
    "include": [
      "src/*.js",
      "src/**/*.js",
      "skip-tests/**/*.tests.js",
      "skip-tests/*.tests.js"
    ],
    "require": [
      "babel-register"
    ],
    "sourceMap": true,
    "instrument": true
  }
}
