-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "remark-mentions",
"version": "1.1.0",
"description": "remark plugin to replace @ mentions with links",
"main": "index.js",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "rimraf \"{lib,test}/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
"test": "npm run build && npm run test-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/FinnRG/remark-mentions"
},
"types": "index.d.ts",
"files": [
"lib/",
"index.d.ts",
"index.js"
],
"keywords": [
"unified",
"remark",
"remark-plugin",
"mdast",
"markdown",
"mentions",
"mention"
],
"author": "Finn Rayk Gärtner <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/mdast": "^4.0.0",
"mdast-util-find-and-replace": "^3.0.0",
"unified": "^10.1.2",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@types/tape": "^5.6.0",
"c8": "^8.0.1",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.3",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.3",
"rimraf": "^5.0.1",
"tape": "^5.6.6",
"type-coverage": "^2.26.0",
"typescript": "^5.1.6"
}
}