UNPKG

1.41 kBJSONView Raw
1{
2 "name": "markdown-magic",
3 "version": "0.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 "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 "homepage": "https://github.com/DavidWells/markdown-magic#readme",
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/DavidWells/markdown-magic"
26 },
27 "dependencies": {
28 "commander": "^2.9.0",
29 "deepmerge": "^1.3.0",
30 "find-up": "^2.1.0",
31 "fs-extra": "^1.0.0",
32 "globby": "^6.1.0",
33 "is-local-path": "^0.1.6",
34 "markdown-toc": "^1.2.0",
35 "sync-request": "^3.0.1"
36 },
37 "devDependencies": {
38 "ava": "^2.3.0",
39 "babel-eslint": "^7.1.1",
40 "dox": "^0.9.0",
41 "eslint": "^3.11.1",
42 "eslint-config-airbnb-base": "^10.0.1",
43 "eslint-plugin-import": "^2.2.0",
44 "sinon": "^1.17.6"
45 },
46 "ava": {
47 "files": [
48 "test/**/*.test.js"
49 ],
50 "verbose": true
51 }
52}