UNPKG

1.37 kBJSONView Raw
1{
2 "name": "markdown-magic",
3 "version": "2.2.0",
4 "description": "Automatically update markdown files with content from external sources",
5 "main": "index.js",
6 "bin": {
7 "markdown": "./cli.js",
8 "md-magic": "./cli.js"
9 },
10 "scripts": {
11 "docs": "node examples/generate-readme.js",
12 "test": "ava --verbose",
13 "test:watch": "ava --verbose --watch",
14 "cli": "node ./cli.js --path 'README.md' --config ./markdown.config.js",
15 "lint": "eslint .",
16 "publish": "git push origin && git push origin --tags",
17 "release:patch": "npm version patch && npm publish",
18 "release:minor": "npm version minor && npm publish",
19 "release:major": "npm version major && npm publish"
20 },
21 "author": "David Wells",
22 "license": "MIT",
23 "homepage": "https://github.com/DavidWells/markdown-magic#readme",
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/DavidWells/markdown-magic"
27 },
28 "dependencies": {
29 "commander": "^7.2.0",
30 "deepmerge": "^4.2.2",
31 "find-up": "^5.0.0",
32 "globby": "^10.0.2",
33 "is-local-path": "^0.1.6",
34 "markdown-toc": "^1.2.0",
35 "mkdirp": "^1.0.4",
36 "sync-request": "^6.1.0"
37 },
38 "devDependencies": {
39 "ava": "^3.15.0",
40 "doxxx": "^1.0.0",
41 "rimraf": "^3.0.2",
42 "sinon": "^11.1.1"
43 },
44 "ava": {
45 "files": [
46 "test/**/*.test.js"
47 ],
48 "verbose": true
49 }
50}