forked from asciidoctor/asciidoctor-cli.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
{
"name": "@asciidoctor/cli",
"version": "3.5.0",
"description": "The Command Line Interface (CLI) for Asciidoctor.js",
"main": "lib/cli.js",
"engines": {
"node": ">=8.11",
"npm": ">=5.0.0"
},
"files": [
"bin",
"lib",
"data"
],
"bin": {
"asciidoctor": "bin/asciidoctor",
"asciidoctorjs": "bin/asciidoctor"
},
"preferGlobal": true,
"scripts": {
"test": "./bin/asciidoctor --version && mocha",
"lint": "standard bin/* lib/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/asciidoctor/asciidoctor-cli.js.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"asciidoc",
"asciidoctor",
"asciidoctor-cli",
"opal",
"javascript",
"library"
],
"authors": [
"Dan Allen (https://github.com/mojavelinux)",
"Guillaume Grossetie (https://github.com/mogztter)",
"Anthonny Quérouil (https://github.com/anthonny)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/asciidoctor/asciidoctor-cli.js/issues"
},
"homepage": "https://github.com/asciidoctor/asciidoctor-cli.js",
"dependencies": {
"yargs": "16.2.0"
},
"devDependencies": {
"@asciidoctor/core": "^2.0.0-rc.1",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"mocha": "8.4.0",
"sinon": "^10.0.0",
"standard": "16.0.3"
},
"peerDependencies": {
"@asciidoctor/core": "^2.0.0-rc.1"
},
"standard": {
"env": "mocha"
}
}