-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
56
57
58
{
"name": "@arothuis/markdown-it-biblatex",
"version": "2.1.0",
"description": "A markdown-it plug-in for rendering citations and a bibliography inside markdown",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"bibliography",
"biblatex",
"citation"
],
"main": "src/index.js",
"files": [
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --reporter-option maxDiffSize=0",
"test:cov": "nyc npm run test",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier -w ."
},
"mocha": {
"spec": "test/**.test.js"
},
"nyc": {
"reporter": [
"text",
"lcov",
"html"
]
},
"author": "Alex Rothuis <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/arothuis/markdown-it-biblatex"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"markdown-it": "^13.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.8.3"
},
"dependencies": {
"biblatex-csl-converter": "^2.0.4",
"citeproc": "^2.4.62"
}
}