This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
87 lines (87 loc) · 2.35 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
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
{
"name": "@npmcorp/marky-markdown",
"version": "12.0.3",
"description": "npm's markdown parser",
"main": "index.js",
"scripts": {
"prebuild": "node bin/build-marky-info.js",
"build": "rm -rf dist && mkdir dist && touch dist/marky-markdown.js && browserify index.js -i highlights -s markyMarkdown > dist/marky-markdown.js",
"test": "standard --fix && mocha --timeout 8000",
"pretest": "npm run build",
"prepublish": "npm run build",
"release": "standard-version --commit-all"
},
"standard-version": {
"scripts": {
"postbump": "npm run build",
"precommit": "git add marky.json"
}
},
"browser": {
"highlights": false
},
"repository": {
"type": "git",
"url": "https://github.com/npm/marky-markdown"
},
"keywords": [
"readme",
"gfm",
"github",
"formatted",
"markdown",
"md",
"documentation",
"syntax highlighting",
"html",
"npm"
],
"author": "Ashley Williams <[email protected]> (http://ashleygwilliams.github.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/marky-markdown/issues"
},
"homepage": "https://github.com/npm/marky-markdown",
"dependencies": {
"atom-language-diff": "^1.0.0",
"atom-language-nginx": "^0.6.1",
"github-slugger": "^1.2.0",
"github-url-to-object": "^4.0.0",
"highlights": "^3.2.0-candidate.1",
"highlights-tokens": "^1.0.1",
"innertext": "^1.0.2",
"is-plain-obj": "^1.1.0",
"language-dart": "^0.1.1",
"language-erlang": "^2.0.0",
"language-glsl": "^2.0.1",
"language-haxe": "^0.2.1",
"language-ini": "^1.7.0",
"language-rust": "^0.4.7",
"language-stylus": "^0.5.2",
"lodash.assign": "^4.0.2",
"lodash.defaults": "^4.0.1",
"lodash.pickby": "^4.2.1",
"markdown-it": "^8.4.0",
"markdown-it-emoji": "^1.3.0",
"markdown-it-expand-tabs": "^1.0.12",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-task-lists": "^2.0.1",
"property-ttl": "^1.0.0",
"sanitize-html": "^1.17.0",
"similarity": "^1.0.1"
},
"devDependencies": {
"browserify": "^14.3.0",
"cheerio": "^0.22.0",
"glob": "^7.1.1",
"intercept-stdout": "^0.1.2",
"mocha": "^3.5.3",
"oniguruma": "^7.0.0",
"standard": "^10.0.0",
"standard-version": "^4.1.0"
},
"bin": "./bin/marky-markdown.js",
"standard": {
"ignore": "dist"
}
}