UNPKG

1.68 kBJSONView Raw
1{
2 "name": "markdown-magic",
3 "version": "2.6.1",
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 "files": [
11 "README.md",
12 "package.json",
13 "index.js",
14 "cli.js",
15 "cli-utils.js",
16 "/lib"
17 ],
18 "scripts": {
19 "docs": "node examples/generate-readme.js",
20 "uvu": "uvu lib '.test.([mc]js|[jt]sx?)$'",
21 "test": "ava --verbose",
22 "test:watch": "ava --verbose --watch",
23 "cli": "node ./cli.js --path 'README.md' --config ./markdown.config.js",
24 "lint": "eslint .",
25 "publish": "git push origin && git push origin --tags",
26 "release:patch": "npm version patch && npm publish",
27 "release:minor": "npm version minor && npm publish",
28 "release:major": "npm version major && npm publish"
29 },
30 "author": "David Wells",
31 "license": "MIT",
32 "homepage": "https://github.com/DavidWells/markdown-magic#readme",
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/DavidWells/markdown-magic"
36 },
37 "dependencies": {
38 "@technote-space/doctoc": "2.4.7",
39 "commander": "^7.2.0",
40 "deepmerge": "^4.2.2",
41 "find-up": "^5.0.0",
42 "globby": "^10.0.2",
43 "is-local-path": "^0.1.6",
44 "json-alexander": "^0.1.8",
45 "mkdirp": "^1.0.4",
46 "sync-request": "^6.1.0"
47 },
48 "devDependencies": {
49 "ava": "^3.15.0",
50 "doxxx": "^1.0.0",
51 "rimraf": "^3.0.2",
52 "sinon": "^11.1.1",
53 "uvu": "^0.5.1",
54 "ansi-styles": "^4.2.1",
55 "concordance": "^5.0.1",
56 "safe-chalk": "^1.0.0"
57 },
58 "ava": {
59 "files": [
60 "test/**/*.test.js"
61 ],
62 "verbose": true
63 }
64}