-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.26 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": "@benchmark-urbanism/remark-bibtex",
"version": "0.6.0",
"description": "Remark plugin to generate citations from a bibtex file",
"homepage": "https://github.com/benchmark-urbanism/remark-bibtex#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benchmark-urbanism/remark-bibtex.git"
},
"author": "benchmark-urbanism",
"keywords": [
"mdast",
"remark",
"bibtex",
"plugin",
"mdast-plugin",
"mdast-bibtex",
"remark-plugin",
"remark-bibtex",
"remark-footnote",
"citation-js",
"CSL"
],
"bugs": {
"url": "https://github.com/benchmark-urbanism/remark-bibtex/issues"
},
"files": [
"index.js",
"package.json",
"LICENSE"
],
"type": "module",
"main": "index.js",
"scripts": {
"test": "tape test.js",
"example": "node ./example/example.js"
},
"dependencies": {
"@citation-js/core": "0.5.4",
"@citation-js/plugin-bibtex": "0.5.6",
"@citation-js/plugin-csl": "0.5.5",
"unist-util-visit": "4.1.0"
},
"devDependencies": {
"eslint": "8.9.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.5.1",
"remark": "14.0.2",
"remark-gfm": "3.0.1",
"tape": "5.5.2"
}
}