-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "markdown-it-anchor",
"version": "9.2.0",
"description": "Header anchors for markdown-it.",
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin",
"header",
"anchor"
],
"license": "Unlicense",
"contributors": [
"Val (https://val.codejam.info/)",
"Nagao, Fabio Zendhi <[email protected]> (https://github.com/nagaozen/)"
],
"files": [
"README.md",
"UNLICENSE",
"dist/*",
"runkit.js",
"types/*"
],
"main": "dist/markdownItAnchor.js",
"module": "dist/markdownItAnchor.mjs",
"types": "./types/index.d.ts",
"repository": "valeriangalliat/markdown-it-anchor",
"scripts": {
"build": "microbundle --generateTypes false",
"dev": "microbundle --generateTypes false watch",
"lint": "standard index.js test.js",
"prepare": "npm run build && npm test",
"test": "npm run lint && ava test.js"
},
"devDependencies": {
"@sindresorhus/slugify": "^2.2.1",
"ava": "^5.1.0",
"markdown-it": "*",
"markdown-it-attrs": "^4.1.6",
"microbundle": "^0.15.1",
"source-map-support": "^0.5.19",
"standard": "^17.1.0"
},
"peerDependencies": {
"@types/markdown-it": "*",
"markdown-it": "*"
},
"source": "index.js",
"unpkg": "dist/markdownItAnchor.umd.js",
"mangle": {
"regex": "^_"
},
"runkitExampleFilename": "runkit.js"
}