UNPKG

1.34 kBJSONView Raw
1{
2 "name": "@vuedoc/md",
3 "version": "1.2.2",
4 "description": "Generate a Markdown Documentation for a Vue file component",
5 "main": "index.js",
6 "bin": {
7 "vuedoc.md": "./bin/cli.js"
8 },
9 "scripts": {
10 "prepublish": "npm test",
11 "pretest": "npm run lint",
12 "test": "mocha --harmony test/tests.js",
13 "lint": "standard index.js lib/* test/*.js",
14 "coverage": "istanbul --harmony cover _mocha test",
15 "coveralls": "npm run lint && istanbul cover _mocha --report lcovonly -- -R spec test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git+https://github.com/vuedoc/md.git"
20 },
21 "keywords": [
22 "vuedoc",
23 "vue",
24 "doc",
25 "markdown",
26 "md"
27 ],
28 "author": "Sébastien Demanou",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/vuedoc/md/issues"
32 },
33 "homepage": "https://github.com/vuedoc/md#readme",
34 "dependencies": {
35 "@vuedoc/parser": "^1.1.0",
36 "ast-to-markdown": "^0.2.0",
37 "deepmerge": "^2.1.0",
38 "markdown-to-ast": "^6.0.3",
39 "md-node-inject": "^0.1.0",
40 "mdast-util-to-string": "^1.0.4"
41 },
42 "devDependencies": {
43 "coveralls": "^3.0.1",
44 "istanbul": "^0.4.5",
45 "mocha": "^5.1.1",
46 "standard": "^11.0.1"
47 },
48 "engines": {
49 "node": ">=6.11.2"
50 }
51}