package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@asciidoctor/cli",
  3. "version": "3.5.0",
  4. "description": "The Command Line Interface (CLI) for Asciidoctor.js",
  5. "main": "lib/cli.js",
  6. "engines": {
  7. "node": ">=8.11",
  8. "npm": ">=5.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": "16.2.0"
  51. },
  52. "devDependencies": {
  53. "@asciidoctor/core": "^2.0.0-rc.1",
  54. "chai": "^4.2.0",
  55. "dirty-chai": "^2.0.1",
  56. "mocha": "8.4.0",
  57. "sinon": "^10.0.0",
  58. "standard": "16.0.3"
  59. },
  60. "peerDependencies": {
  61. "@asciidoctor/core": "^2.0.0-rc.1"
  62. },
  63. "standard": {
  64. "env": "mocha"
  65. }
  66. }