{
  "name": "@argdown/node",
  "version": "1.7.5",
  "description": "Async Argdown application for node.js",
  "main": "./dist/index.js",
  "module": "./dist-esm/index.js",
  "types": "./dist-esm/index.d.ts",
  "engines": {
    "node": ">= 8.0.0"
  },
  "scripts": {
    "deploy": "npm run test && npm run build && npm version patch && npm run push",
    "type-check": "tsc --noEmit",
    "build": "yarn run clean && yarn run build:commonjs && yarn run build:esm",
    "build:commonjs": "tsc",
    "build:esm": "tsc -m ES2020 --target ES2020 --outDir dist-esm",
    "build:src": "tsc",
    "docs:build": "node ./node_modules/typedoc/bin/typedoc ./src/",
    "test": "mocha -r ts-node/register --full-trace --bail --require source-map-support/register ./test/**/*.spec.ts",
    "coverage": "nyc mocha -r ts-node/register --full-trace --bail --require source-map-support/register ./test/**/*.spec.ts",
    "report": "nyc report",
    "clean": "rimraf \"dist/*\" && rimraf \"dist-esm/*\"",
    "prepublishOnly": "npm run-script build",
    "push": "git push --tags origin HEAD:master"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/christianvoigt/argdown/tree/master/packages/argdown-node"
  },
  "keywords": [
    "Argdown"
  ],
  "author": "Christian Voigt",
  "license": "MIT",
  "dependencies": {
    "@aduh95/viz.js": "3.4.0",
    "@argdown/core": "^1.7.5",
    "@types/glob": "^7.1.1",
    "@types/lodash.clonedeep": "^4.5.6",
    "@types/lodash.defaultsdeep": "^4.6.6",
    "@types/lodash.includes": "^4.3.6",
    "@types/lodash.isempty": "^4.4.6",
    "@types/lodash.isfunction": "^3.0.6",
    "@types/lodash.isobject": "^3.0.6",
    "@types/lodash.isstring": "^4.0.6",
    "@types/node": "^16.4.3",
    "@types/pdfkit": "^0.11.0",
    "axios": "^0.21.1",
    "chokidar": "^3.3.1",
    "glob": "7.2.0",
    "image-size": "^1.0.0",
    "image-type": "^4.1.0",
    "import-fresh": "^3.2.1",
    "is-svg": "^4.2.1",
    "lodash.clonedeep": "^4.5.0",
    "lodash.defaultsdeep": "^4.6.1",
    "lodash.includes": "^4.3.0",
    "lodash.isempty": "^4.4.0",
    "lodash.isfunction": "^3.0.9",
    "lodash.isobject": "^3.0.2",
    "lodash.isstring": "^4.0.1",
    "mkdirp": "^1.0.3",
    "pdfkit": "^0.12.1",
    "svg-to-pdfkit": "^0.1.8"
  },
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/chai-fs": "^2.0.2",
    "@types/mocha": "^9.0.0",
    "@types/rimraf": "^3.0.0",
    "chai": "^4.2.0",
    "chai-fs": "^2.0.0",
    "copyfiles": "^2.2.0",
    "intercept-stdout": "^0.1.2",
    "mkdirp": "^1.0.3",
    "mocha": "^9.0.3",
    "nyc": "^15.0.0",
    "rimraf": "^3.0.2",
    "source-map-support": "^0.5.16",
    "ts-node": "^10.1.0",
    "typedoc": "0.22.4",
    "typescript": "4.4.3"
  },
  "nyc": {
    "include": [
      "src/**/*.ts",
      "src/**/*.tsx"
    ],
    "extension": [
      ".ts",
      ".tsx"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text",
      "html"
    ],
    "sourceMap": true,
    "instrument": true
  }
}
