-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
61 lines (61 loc) · 1.62 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-browser-extension",
"description": "Render AsciiDoc (.ad, .adoc, .asc, .asciidoc) as HTML inside your browser!",
"version": "2.7.1",
"engines": {
"node": ">=18",
"npm": ">=8.0.0"
},
"scripts": {
"test": "node spec/browser/run.js",
"build:highlightjs": "node tasks/update-highlight-languages.js",
"build": "npm run lint:code && node tasks/build.js",
"lint:code": "standard app/js/*.js app/js/module/**.js app/js/vendor/asciidoctor-*.js tasks/**.js spec/**/**.js",
"lint:firefox": "addons-linter dist/asciidoctor-browser-extension-*.zip"
},
"homepage": "https://github.com/asciidoctor/asciidoctor-browser-extension",
"author": {
"name": "Guillaume Grossetie"
},
"repository": {
"type": "git",
"url": "[email protected]:asciidoctor/asciidoctor-browser-extension.git"
},
"bugs": {
"url": "https://github.com/asciidoctor/asciidoctor-browser-extension/issues"
},
"license": "MIT",
"devDependencies": {
"@asciidoctor/core": "2.2.6",
"addons-linter": "6.7.0",
"archiver": "5.3.1",
"asciidoctor-kroki": "0.17.0",
"bestikk-fs": "1.0.0",
"bestikk-log": "0.1.0",
"bulma": "0.9.4",
"chai": "4.3.7",
"chartist": "0.11.4",
"csso": "5.0.5",
"dirty-chai": "2.0.1",
"eslint": "8.42.0",
"font-awesome": "4.7.0",
"mathjax": "3.0.1",
"mocha": "10.2.0",
"puppeteer": "20.5.0",
"sass": "1.63.3",
"sinon": "15.1.0",
"standard": "17.1.0"
},
"keywords": [
"browser",
"chrome",
"chromium",
"opera",
"firefox",
"extension",
"asciidoctor"
],
"volta": {
"node": "18.16.0"
}
}