-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 911 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 911 Bytes
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
{
"name": "markdown-clear",
"version": "1.0.1",
"description": "A NodeJS package to generage TOC of markdown file ordering and numbering headers. ",
"main": "./lib/index.js",
"bin": {
"markdown-clear": "./lib/cli.js"
},
"scripts": {
"build": "babel src -d lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rawbin-/markdown-clear.git"
},
"keywords": [
"nodejs",
"markdown",
"toc",
"order",
"number"
],
"author": "钌子_rawbin",
"license": "MIT",
"bugs": {
"url": "https://github.com/rawbin-/markdown-clear/issues"
},
"homepage": "https://github.com/rawbin-/markdown-clear#readme",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1"
},
"dependencies": {
"mkdirp": "^0.5.1",
"yargs": "^8.0.2"
}
}