-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 954 Bytes
/
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
{
"name": "remark-remove-comments",
"version": "1.1.1",
"description": "Remark plugin to remove HTML comments from the processed output",
"keywords": [
"unified",
"remark",
"remark-plugin",
"comments"
],
"files": [
"index.js",
"index.d.ts",
"transformer.js",
"transformer.d.ts"
],
"type": "module",
"main": "index.js",
"scripts": {
"test": "node --test test.js"
},
"author": "Alvin <[email protected]> (https://alvin.codes)",
"license": "MIT",
"dependencies": {
"html-comment-regex": "^1.1.2",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
},
"devDependencies": {
"remark": "^15.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/alvinometric/remark-remove-comments.git"
},
"homepage": "https://github.com/alvinometric/remark-remove-comments",
"bugs": {
"url": "https://github.com/alvinometric/remark-remove-comments/issues"
}
}