{
  "name": "@midwest-design/common",
  "public": true,
  "version": "0.1.2",
  "description": "Common stuff for midwest",
  "main": "dist/main/index.js",
  "typings": "dist/main/index.d.ts",
  "module": "dist/module/index.js",
  "repository": "https://github.com/splitinfinities/midwest",
  "license": "MIT",
  "keywords": [],
  "scripts": {
    "describe": "npm-scripts-info",
    "build": "run-s clean && run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "watch:main": "tsc -p tsconfig.json --watch --incremental --preserveWatchOutput",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:tslint": "tslint --fix --project .",
    "test": "run-s build test:*",
    "test:lint": "tslint --project .",
    "watch": "run-s clean watch:main",
    "start": "run-s clean watch:main",
    "cov": "run-s build cov:html && open-cli coverage/index.html",
    "cov:html": "nyc report --reporter=html",
    "cov:send": "nyc report --reporter=lcov && codecov",
    "cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
    "doc": "run-s doc:html && open-cli dist/docs/index.html",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out dist/docs",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json dist/docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d dist/docs",
    "reset": "git clean -dfx && git reset --hard && npm i",
    "clean": "trash build test",
    "prepare-release": "run-s reset test cov:check doc:html version doc:publish"
  },
  "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",
    "doc:json": "Generate API documentation in typedoc JSON format",
    "version": "Bump package.json version, update CHANGELOG.md, tag release",
    "reset": "Delete all untracked files and reset the repo to the last commit",
    "prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@stencil/angular-output-target": "^0.4.0",
    "@stencil/react-output-target": "^0.1.0",
    "@stencil/store": "^1.5.0",
    "@stencil/svelte-output-target": "^0.0.3",
    "@stencil/vue-output-target": "^0.6.0",
    "@types/jest": "^27.4.1",
    "appmetrics.js": "0.0.9",
    "base-64": "^0.1.0",
    "css-custom-properties": "^0.1.0",
    "dayjs": "^1.10.8",
    "jest": "^27.5.1",
    "rollup-plugin-node-polyfills": "^0.2.1",
    "sha.js": "^2.4.11"
  },
  "devDependencies": {
    "@bitjson/npm-scripts-info": "^1.0.0",
    "@bitjson/typedoc": "^0.15.0-0",
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "ava": "2.2.0",
    "codecov": "^3.8.3",
    "cz-conventional-changelog": "^2.1.0",
    "gh-pages": "^2.2.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^14.1.1",
    "open-cli": "^5.0.0",
    "prettier": "^2.5.1",
    "standard-version": "^8.0.2",
    "trash-cli": "^3.1.0",
    "tslint": "^5.20.1",
    "tslint-config-prettier": "^1.18.0",
    "tslint-immutable": "^6.0.1",
    "typescript": "^3.9.10"
  },
  "ava": {
    "failFast": true,
    "files": [
      "dist/main/**/*.spec.js"
    ],
    "sources": [
      "dist/main/**/*.js"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "singleQuote": true
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "exclude": [
      "**/*.spec.js"
    ]
  },
  "gitHead": "d62f3955bbf98c5bcf3ea17e2577f775f670b4bb"
}
