-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.12 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
{
"name": "advanced-markdown",
"description": "A markdown parser built for speed, support custom markdown grammar, based on marked.js",
"author": "Chen yuan",
"version": "0.1.2",
"main": "./dist/index.js",
"files": [
"lib/",
"dist/"
],
"npmName": "advanced-markdown",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"repository": "https://github.com/92hackers/advanced-markdown.git",
"homepage": "https://github.com/92hackers/advanced-markdown",
"bugs": {
"url": "https://github.com/92hackers/advanced-markdown/issues"
},
"license": "MIT",
"keywords": [
"markdown",
"html"
],
"tags": [
"markdown",
"markup",
"html"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-stage-2": "^7.0.0",
"@markedjs/html-differ": "^2.0.1",
"babel-eslint": "^10.0.2",
"babel-plugin-add-module-exports": "^1.0.2",
"cheerio": "^1.0.0-rc.3",
"commonmark": "0.x",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vuln-regex-detector": "^1.0.4",
"front-matter": "^3.0.2",
"highlight.js": "^9.15.8",
"husky": "^3.0.0",
"istanbul": "^0.4.5",
"jasmine": "^3.4.0",
"markdown": "0.x",
"markdown-it": "8.x",
"node-fetch": "^2.3.0"
},
"scripts": {
"compile": "babel src --out-dir dist",
"test": "istanbul cover ./test",
"bench": "node test/bench.js",
"lint": "eslint ./src",
"preversion": "npm run build && (git diff --quiet || git commit -am 'minify')",
"prepublishOnly": "yarn compile"
},
"engines": {
"node": ">=0.10.0"
},
"husky": {
"hooks": {
"pre-commit": "eslint ./src"
}
}
}