forked from DavidWells/markdown-magic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "markdown-magic",
"version": "2.0.0",
"description": "Automatically update markdown files with content from external sources",
"main": "index.js",
"bin": {
"markdown": "./cli.js",
"md-magic": "./cli.js"
},
"scripts": {
"docs": "node examples/generate-readme.js",
"test": "ava --verbose",
"test:watch": "ava --verbose --watch",
"lint": "eslint .",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"author": "David Wells",
"license": "MIT",
"homepage": "https://github.com/DavidWells/markdown-magic#readme",
"repository": {
"type": "git",
"url": "https://github.com/DavidWells/markdown-magic"
},
"dependencies": {
"commander": "^2.9.0",
"deepmerge": "^4.2.2",
"find-up": "^2.1.0",
"globby": "^6.1.0",
"is-local-path": "^0.1.6",
"markdown-toc": "^1.2.0",
"mkdirp": "^1.0.4",
"sync-request": "^3.0.1"
},
"devDependencies": {
"ava": "^2.3.0",
"dox": "^0.9.0",
"rimraf": "^3.0.2",
"sinon": "^1.17.6"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"verbose": true
}
}