UNPKG

1.25 kBJSONView Raw
1{
2 "name": "markdown-magic",
3 "version": "0.1.14",
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 "lint": "eslint .",
15 "publish": "git push origin && git push origin --tags",
16 "release:patch": "npm version patch && npm publish",
17 "release:minor": "npm version minor && npm publish",
18 "release:major": "npm version major && npm publish"
19 },
20 "author": "David Wells",
21 "license": "MIT",
22 "dependencies": {
23 "commander": "^2.9.0",
24 "deepmerge": "^1.3.0",
25 "find-up": "^2.1.0",
26 "fs-extra": "^1.0.0",
27 "globby": "^6.1.0",
28 "is-local-path": "^0.1.6",
29 "markdown-toc": "^1.0.2",
30 "sync-request": "^3.0.1"
31 },
32 "devDependencies": {
33 "ava": "^0.17.0",
34 "babel-eslint": "^7.1.1",
35 "dox": "^0.9.0",
36 "eslint": "^3.11.1",
37 "eslint-config-airbnb-base": "^10.0.1",
38 "eslint-plugin-import": "^2.2.0",
39 "ghooks": "^1.3.2",
40 "sinon": "^1.17.6"
41 },
42 "config": {
43 "ghooks": {
44 "pre-commit": "npm run docs"
45 }
46 }
47}