{
  "name": "appc-tasks",
  "version": "1.0.3",
  "description": "Base implementations for any kind of task in NodeJS",
  "author": "Axway Appcelerator <npmjs@appcelerator.com> (https://appcelerator.com)",
  "contributors": [
    "Jan Vennemann <jvennemann@axway.com>"
  ],
  "repository": "appcelerator/appc-tasks",
  "license": "Apache-2.0",
  "engines": {
    "node": ">= 4.0.0"
  },
  "main": "dist/index.js",
  "scripts": {
    "build": "babel lib --out-dir dist",
    "docs": "docma -c docma.config.json",
    "lint": "eslint lib test",
    "test": "cross-env NODE_ENV=test JUNIT_REPORT_PATH=junit_report.xml nyc mocha --reporter mocha-jenkins-reporter",
    "coveralls": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
    "prepublishOnly": "pinst --disable && npm run build",
    "_postinstall": "husky install",
    "postpublish": "pinst --enable"
  },
  "keywords": [
    "task",
    "incremental",
    "build",
    "project"
  ],
  "dependencies": {
    "file-state-monitor": "^2.0.0",
    "fs-extra": "^9.1.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.6.0",
    "@babel/core": "^7.6.0",
    "@babel/preset-env": "^7.6.0",
    "@babel/register": "^7.6.0",
    "@commitlint/cli": "^12.0.0",
    "@commitlint/config-conventional": "^12.0.0",
    "babel-plugin-istanbul": "^6.0.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "cross-env": "^7.0.0",
    "docma": "^3.2.2",
    "eslint": "^7.11.0",
    "eslint-plugin-mocha": "^8.0.0",
    "husky": "^5.1.1",
    "jsdoc-babel": "^0.5.0",
    "lint-staged": "^10.4.1",
    "mocha": "^8.1.3",
    "mocha-jenkins-reporter": "^0.4.2",
    "mock-fs": "^4.10.1",
    "nyc": "^15.0.0",
    "pinst": "^2.1.6",
    "sinon": "^9.2.0",
    "std-mocks": "^1.0.1"
  },
  "nyc": {
    "require": [
      "@babel/register"
    ],
    "reporter": [
      "lcov",
      "text",
      "cobertura"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*.js": "eslint"
  }
}
