{
  "name": "ropm",
  "version": "0.11.5",
  "description": "",
  "scripts": {
    "preversion": "npm run build && npm run lint && npm run test",
    "build": "tsc",
    "lint": "eslint \"src/**\"",
    "test": "nyc mocha",
    "test:nocover": "mocha",
    "publish-coverage": "nyc report --reporter=text-lcov | coveralls",
    "package": "npm run build && npm pack"
  },
  "engines": {
    "node": ">=8.1.10"
  },
  "engineStrict": true,
  "main": "dist/cli.js",
  "typings": "dist/index.d.ts",
  "bin": {
    "ropm": "dist/cli.js"
  },
  "files": [
    "dist/**/*",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "author": "Bronley Plumb",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/rokucommunity/ropm"
  },
  "bugs": {
    "url": "https://github.com/rokucommunity/ropm/issues"
  },
  "homepage": "https://github.com/rokucommunity/ropm",
  "dependencies": {
    "@rokucommunity/logger": "^0.3.11",
    "@xml-tools/ast": "^5.0.5",
    "@xml-tools/parser": "1.0.10",
    "brighterscript": "^0.70.4",
    "del": "6.0.0",
    "fs-extra": "9.1.0",
    "glob-all": "3.2.1",
    "latinize": "0.5.0",
    "npm-packlist": "2.1.4",
    "roku-deploy": "^3.16.3",
    "semver": "^7.6.3",
    "yargs": "16.2.0"
  },
  "devDependencies": {
    "@types/chai": "^4.2.15",
    "@types/fs-extra": "^9.0.7",
    "@types/glob": "^7.1.3",
    "@types/latinize": "^0.2.15",
    "@types/mocha": "^8.2.1",
    "@types/node": "^14.14.28",
    "@types/npm-packlist": "^1.1.1",
    "@types/semver": "^7.3.4",
    "@types/sinon": "^9.0.10",
    "@types/yargs": "^16.0.0",
    "@typescript-eslint/eslint-plugin": "^5.27.0",
    "@typescript-eslint/parser": "^5.27.0",
    "chai": "^4.3.4",
    "coveralls-next": "^4.2.0",
    "eslint": "^8.16.0",
    "eslint-plugin-github": "^4.1.1",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jsdoc": "^39.3.6",
    "eslint-plugin-no-only-tests": "^2.6.0",
    "mocha": "^11.1.0",
    "nyc": "^15.1.0",
    "sinon": "^9.2.4",
    "source-map-support": "^0.5.20",
    "ts-node": "^10.4.0",
    "typescript": "^5.4.5"
  },
  "mocha": {
    "spec": "src/**/*.spec.ts",
    "require": [
      "source-map-support/register",
      "ts-node/register"
    ],
    "timeout": 20000,
    "fullTrace": true,
    "watchExtensions": [
      "ts"
    ]
  },
  "nyc": {
    "include": [
      "src/**/*.ts",
      "!src/**/*.spec.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register",
      "source-map-support/register"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true,
    "check-coverage": false,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100
  }
}
