forked from valeriangalliat/markdown-it-anchor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "@leetcode/markdown-it-anchor",
"version": "5.0.3",
"description": "Header anchors for markdown-it.",
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin",
"header",
"anchor"
],
"homepage": "https://github.com/LeetCode-OpenSource/markdown-it-anchor",
"license": "Unlicense",
"files": [
"README.md",
"UNLICENSE",
"index.js",
"runkit.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LeetCode-OpenSource/markdown-it-anchor.git"
},
"main": "dist/index.js",
"scripts": {
"lint": "standard",
"prepublish": "npm test",
"test": "npm run lint && node test",
"build": "babel index.js --out-file dist/index.js --presets=env"
},
"runkitExampleFilename": "runkit.js",
"standard": {
"ignore": [
"/dist/"
]
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"markdown-it": "^8.3.0",
"markdown-it-attrs": "^0.8.0",
"standard": "^11.0.1"
},
"peerDependencies": {
"markdown-it": "^8.4.1"
},
"bugs": {
"url": "https://github.com/LeetCode-OpenSource/markdown-it-anchor/issues"
},
"author": ""
}