-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
59
60
61
{
"name": "asciidoctor-treeview",
"version": "1.0.0-alpha.7",
"description": "An extension to generate folder treeview with beautiful icons for Asciidoctor.js",
"author": "Lasse Knudsen <[email protected]>",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/lask79/asciidoctor-treeview"
},
"bugs": {
"url": "https://github.com/lask79/asciidoctor-treeview/issues"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "jest --verbose",
"build": "rm -rf ./lib/converter/generated; node scripts/material-icons-theme-build.js",
"postpublish": "npx -y downdoc --postpublish",
"prepublishOnly": "npx -y downdoc --prepublish"
},
"files": [
"lib",
"data"
],
"keywords": [
"asciidoctor",
"treeview",
"extension",
"directory tree",
"icons"
],
"license": "MPL-2.0",
"devDependencies": {
"@asciidoctor/core": "~2.2",
"@jest/globals": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "~7.32",
"eslint-config-standard": "~16.0",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"material-icon-theme": "^4.32.0",
"prettier-eslint": "~13.0",
"stylelint": "^14.12.1",
"stylelint-config-standard": "^28.0.0",
"vscode-icons-js": "^11.6.1"
},
"dependencies": {
"@asciidoctor/core": "~2.2",
"handlebars": "^4.7.8"
},
"workspaces": [
"."
]
}