forked from arve0/markdown-it-attrs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "markdown-it-attrs",
"version": "4.1.6",
"description": "Add classes, identifiers and attributes to your markdown with {} curly brackets, similar to pandoc's header attributes",
"main": "index.js",
"license": "MIT",
"repository": "cnblogs/markdown-it-attrs",
"author": {
"name": "Arve Seljebu",
"email": "[email protected]",
"url": "https://arve0.github.io"
},
"engines": {
"node": ">=6"
},
"scripts": {
"browser": "browserify index.js -t [ babelify --presets [ @babel/preset-env ] ] --standalone markdown-it-attrs -o markdown-it-attrs.browser.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"preversion": "mocha && npm run browser",
"test": "npm run lint && nyc mocha"
},
"homepage": "https://github.com/arve0/markdown-it-attrs",
"keywords": [
"commonmark",
"markdown",
"markdown-it",
"markdown-it-plugin",
"attributes",
"classes",
"ids",
"identifiers",
"curly brackets",
"pandoc",
"header_attributes"
],
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.4.1",
"markdown-it": "^13.0.1",
"markdown-it-implicit-figures": "^0.9.0",
"markdown-it-katex": "^2.0.3",
"mocha": "^9.1.3",
"nyc": "^15.1.0"
},
"peerDependencies": {
"markdown-it": ">= 9.0.0"
},
"tonicExampleFilename": "demo.js",
"files": [
"index.js",
"patterns.js",
"utils.js",
"markdown-it-attrs.browser.js",
"package.json",
"READMD.md",
"LICENSE"
]
}