-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 2.7 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 2.7 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "breakdance",
"description": "Breakdance is a node.js library for converting HTML to markdown. Highly pluggable, flexible and easy to use. It's time for your markup to get down.",
"version": "3.0.1",
"homepage": "http://breakdance.io",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"David Larlet (https://larlet.fr/david/code)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
],
"repository": "breakdance/breakdance",
"bugs": {
"url": "https://github.com/breakdance/breakdance/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=4.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"breakdance-util": "^0.1.5",
"cheerio": "^0.22.0",
"condense-newlines": "^0.2.1",
"define-property": "^1.0.0",
"detect-indent": "^5.0.0",
"export-files": "^2.1.1",
"extend-shallow": "^2.0.1",
"is-self-closing": "^1.0.0",
"isobject": "^3.0.0",
"mixin-deep": "^1.2.0",
"repeat-string": "^1.6.1",
"snapdragon": "^0.11.0",
"snapdragon-cheerio": "^1.1.0",
"snapdragon-node": "^1.0.6",
"snapdragon-util": "^2.1.1",
"strip-attributes": "^0.2.0",
"trim-leading-lines": "^0.1.1",
"trim-trailing-lines": "^1.1.0",
"unescape": "^0.2.0"
},
"devDependencies": {
"dashify": "^0.2.2",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-format-md": "^0.1.12",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.0",
"gulp-unused": "^0.2.1",
"helper-changelog": "^0.3.0",
"js-beautify": "^1.6.12",
"kind-of": "^3.1.0",
"mocha": "^3.2.0",
"strip-color": "^0.1.0",
"time-diff": "^0.3.1",
"verb-generate-readme": "^0.5.0",
"write": "^0.3.3",
"yargs-parser": "^5.0.0"
},
"keywords": [
"breakdance",
"convert",
"format",
"html",
"markdown",
"parse",
"plain text",
"re-format",
"render",
"text",
"to-markdown",
"tomd"
],
"lintDeps": {
"devDependencies": {
"files": {
"patterns": [
"test/configs/*.js"
]
}
}
},
"verb": {
"toc": {
"method": "preWrite",
"maxdepth": 2,
"footer": false
},
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"helpers": [
"helper-changelog"
],
"lint": {
"reflinks": true
},
"related": {
"list": [
"breakdance-checklist",
"breakdance-reflinks",
"breakdance-util"
]
},
"reflinks": [
"breakdance-util",
"cheerio",
"helper-changelog",
"snapdragon"
]
}
}