-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 993 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
41
42
43
44
45
46
{
"name": "d2-filter",
"version": "1.4.1",
"description": "Pandoc filter for D2",
"main": "dist/filter",
"files": [
"lib",
"filter-shim.js"
],
"scripts": {
"prepare": "tsc --project .",
"test": "vitest",
"test:run": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ram02z/d2-filter.git"
},
"keywords": [
"pandoc",
"D2"
],
"bin": {
"d2-filter": "filter-shim.js"
},
"author": "Omar Zeghouani",
"license": "MIT",
"bugs": {
"url": "https://github.com/ram02z/d2-filter/issues"
},
"homepage": "https://github.com/ram02z/d2-filter#readme",
"dependencies": {
"pandoc-filter": "^2.1.0",
"tmp": "^0.2.1",
"which": "^3.0.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/tmp": "^0.2.3",
"@types/which": "^3.0.0",
"@vitest/coverage-c8": "^0.30.1",
"typescript": "^5.0.3",
"vitest": "^0.30.1"
}
}