forked from npm/marky-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "marky-markdown",
"version": "8.1.0",
"description": "npm's markdown parser",
"main": "index.js",
"scripts": {
"build": "browserify index.js -i highlights -s markyMarkdown > dist/marky-markdown.js",
"test": "standard-format -w && standard && mocha --timeout 5000",
"pretest": "npm run build"
},
"browser": {
"highlights": false
},
"repository": {
"type": "git",
"url": "https://github.com/npm/marky-markdown"
},
"keywords": [
"readme",
"markdown",
"md",
"documentation",
"syntax highlighting",
"html",
"github",
"npm"
],
"author": "Ashley Williams <ashley@npmjs.com> (http://ashleygwilliams.github.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/marky-markdown/issues"
},
"homepage": "https://github.com/npm/marky-markdown",
"dependencies": {
"cheerio": "^0.22.0",
"github-slugger": "^1.0.0",
"github-url-to-object": "^2.2.3",
"lodash.assign": "^4.0.2",
"lodash.defaults": "^4.0.1",
"markdown-it": "^8.0.0",
"markdown-it-emoji": "^1.2.0",
"markdown-it-expand-tabs": "^1.0.7",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-task-lists": "^1.0.0",
"sanitize-html": "^1.6.1",
"similarity": "^1.0.1"
},
"devDependencies": {
"browserify": "^13.0.1",
"glob": "^7.0.0",
"intercept-stdout": "^0.1.2",
"mocha": "^3.0.2",
"standard": "^8.0.0",
"standard-format": "^2.1.0"
},
"bin": "./bin/marky-markdown.js",
"standard": {
"ignore": "dist"
}
}