{
  "name": "md2word",
  "version": "1.0.0",
  "description": "Markdown to Word automation",
  "main": "./index.js",
  "files": [
    "linter/*.js",
    "*.js"
  ],
  "bin": {
    "md2word": "./index.js"
  },
  "scripts": {
    "test": "mocha",
    "cover": "nyc mocha && nyc report --reporter=lcov",
    "lint": "standard --fix",
    "mocha": "mocha",
    "mocha-dbg": "node --inspect-brk node_modules/mocha/bin/_mocha",
    "start": "reserve"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ArnaudBuchholz/md2word.git"
  },
  "keywords": [
    "markdown",
    "word",
    "automation"
  ],
  "author": "Arnaud Buchholz",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ArnaudBuchholz/md2word/issues"
  },
  "homepage": "https://github.com/ArnaudBuchholz/md2word#readme",
  "dependencies": {
    "markdown-it": "^12.2.0",
    "markdownlint": "^0.24.0",
    "reserve": "^1.11.7"
  },
  "devDependencies": {
    "mocha": "^9.1.2",
    "nyc": "^15.1.0",
    "standard": "^16.0.4"
  },
  "standard": {
    "env": [
      "mocha",
      "node"
    ],
    "globals": []
  },
  "mocha": {
    "diff": false,
    "spec": [
      "tests/mocha/*.test.js"
    ]
  },
  "nyc": {
    "all": true,
    "cache": false,
    "check-coverage": true,
    "exclude": [
      "tests/**/*",
      "vscode-format.js",
      "coverage/**/*"
    ],
    "branches": 98,
    "lines": 98,
    "functions": 98,
    "statements": 98
  }
}
