{
  "name": "@lapidist/safestart",
  "version": "1.3.1",
  "description": "A TypeScript safe start with testing, versioning, coverage, docs and linting set up for you.",
  "author": "Brett Dorrans <hello@lapidist.net>",
  "license": "MIT",
  "main": "build/index.js",
  "scripts": {
    "info": "npm-scripts-info",
    "build": "run-s clean && run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out docs",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" \"__tests__/**/*.ts\" --write",
    "fix:eslint": "eslint --fix \"src/**/*.ts\" \"__tests__/**/*.ts\"",
    "test": "run-s build test:*",
    "test:lint": "eslint \"src/**/*.ts\" \"__tests__/**/*.ts\" && prettier \"src/**/*.ts\" \"__tests__/**/*.ts\" --list-different",
    "test:unit": "nyc --silent ava",
    "watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
    "cov": "run-s build test:unit cov:html && open coverage/index.html",
    "cov:html": "nyc report --reporter=html",
    "cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
    "doc": "run-s build:html && open docs/index.html",
    "clean": "trash build test",
    "semantic-release": "semantic-release"
  },
  "scripts-info": {
    "info": "Display information about the package scripts",
    "build": "Clean and rebuild the project",
    "fix": "Try to automatically fix any linting problems",
    "test": "Lint and unit test the project",
    "watch": "Watch and rebuild the project on save, then rerun relevant tests",
    "cov": "Rebuild, run tests, then create and open the coverage report",
    "doc": "Generate HTML API documentation and open it in a browser"
  },
  "engines": {
    "node": ">=8.9"
  },
  "dependencies": {},
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^2.0.0",
    "@typescript-eslint/parser": "^2.0.0",
    "ava": "^2.2.0",
    "codecov": "^3.5.0",
    "cz-conventional-changelog": "^3.0.2",
    "eslint": "^6.1.0",
    "eslint-config-prettier": "^6.0.0",
    "eslint-plugin-prettier": "^3.1.0",
    "npm-run-all": "^4.1.5",
    "npm-scripts-info": "^0.3.9",
    "nyc": "^14.1.1",
    "open": "^6.4.0",
    "prettier": "^1.18.2",
    "semantic-release": "^15.13.24",
    "trash-cli": "^3.0.0",
    "typedoc": "^0.15.0",
    "typescript": "^3.5.3"
  },
  "ava": {
    "failFast": false,
    "files": [
      "build/**/*.spec.js"
    ],
    "sources": [
      "build/**/*.js"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "nyc": {
    "exclude": [
      "**/*.spec.js"
    ]
  }
}
