-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
71
{
"name": "asciidoctor-highlight.js",
"version": "0.4.0",
"description": "Asciidoctor.js extension for highlighting code in build time using Highlight.js",
"author": {
"name": "Jakub Jirutka",
"email": "jakub@jirutka.cz"
},
"license": "MIT",
"homepage": "https://github.com/jirutka/asciidoctor-highlight.js",
"bugs": "https://github.com/jirutka/asciidoctor-highlight.js/issues/",
"repository": {
"type": "git",
"url": "https://github.com/jirutka/asciidoctor-highlight.js.git"
},
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "flow-remove-types --all --out-dir lib/ src/ && ascjs lib/ lib/",
"clean": "rimraf lib/ README.md",
"eslint": "eslint src/",
"flow:check": "flow check src/",
"flow:libdefs": "flow-typed install",
"lint": "npm-run-all --continue-on-error --print-name --silent flow:check eslint",
"prepare": "npm-run-all clean build",
"prepublishOnly": "run-s readme2md",
"readme2md": "asciidoctor -o - -b docbook README.adoc | pandoc -f docbook -t gfm --base-header-level 2 -o README.md",
"test": "npm-run-all build test-only",
"test-only": "scripts/test test/*.test.js"
},
"keywords": [
"asciidoctor",
"asciidoc",
"extension",
"highlightjs",
"syntax-highlighting"
],
"engines": {
"node": ">=8.10.0",
"yarn": "^1.0.0"
},
"dependencies": {
"highlight.js": ">=10.7.0 <12.0.0"
},
"devDependencies": {
"@asciidoctor/core": ">=2.0.0 <2.3.0",
"ascjs": "^5.0.1",
"babel-eslint": "^10.1.0",
"dedent": "^0.7.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.120.1",
"flow-remove-types": "^2.120.1",
"flow-typed": "^2.6.2",
"npm-run-all": "^4.1.3",
"rimraf": "^3.0.2",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
},
"peerDependencies": {
"@asciidoctor/core": ">=2.0.0 <2.3.0"
}
}