1{ 2 "name": "@asciidoctor/cli", 3 "version": "4.0.0", 4 "description": "The Command Line Interface (CLI) for Asciidoctor.js", 5 "main": "lib/cli.js", 6 "engines": { 7 "node": ">=16", 8 "npm": ">=8.0.0" 9 }, 10 "files": [ 11 "bin", 12 "lib", 13 "data" 14 ], 15 "bin": { 16 "asciidoctor": "bin/asciidoctor", 17 "asciidoctorjs": "bin/asciidoctor" 18 }, 19 "preferGlobal": true, 20 "scripts": { 21 "test": "./bin/asciidoctor --version && mocha", 22 "lint": "standard bin/* lib/*.js test/*.js" 23 }, 24 "repository": { 25 "type": "git", 26 "url": "https://github.com/asciidoctor/asciidoctor-cli.js.git" 27 }, 28 "publishConfig": { 29 "access": "public" 30 }, 31 "keywords": [ 32 "asciidoc", 33 "asciidoctor", 34 "asciidoctor-cli", 35 "opal", 36 "javascript", 37 "library" 38 ], 39 "authors": [ 40 "Dan Allen (https://github.com/mojavelinux)", 41 "Guillaume Grossetie (https://github.com/mogztter)", 42 "Anthonny Quérouil (https://github.com/anthonny)" 43 ], 44 "license": "MIT", 45 "bugs": { 46 "url": "https://github.com/asciidoctor/asciidoctor-cli.js/issues" 47 }, 48 "homepage": "https://github.com/asciidoctor/asciidoctor-cli.js", 49 "dependencies": { 50 "yargs": "17.3.1" 51 }, 52 "devDependencies": { 53 "@asciidoctor/core": "~3.0", 54 "chai": "4.3.7", 55 "dirty-chai": "2.0.1", 56 "mocha": "10.2.0", 57 "sinon": "15.2.0", 58 "standard": "17.1.0" 59 }, 60 "peerDependencies": { 61 "@asciidoctor/core": ">=2 <4" 62 }, 63 "standard": { 64 "env": [ 65 "mocha" 66 ] 67 }, 68 "volta": { 69 "node": "18.16.1" 70 } 71} 72