{ "name": "@asciidoctor/opal-runtime", "description": "Opal Runtime for Asciidoctor.js", "keywords": [ "javascript", "opal", "asciidoctor", "runtime", "ruby" ], "author": "Guillaume Grossetie", "version": "3.0.1", "license": "MIT", "engines": { "node": ">=16" }, "files": [ "src" ], "directories": { "lib": "src" }, "type": "module", "main": "./src/index.cjs", "browser": "./src/index.mjs", "exports": { "node": { "import": "./src/index.js", "require": "./src/index.cjs" }, "default": "./src/index.mjs" }, "scripts": { "build": "rollup --config", "test": "mocha spec/*.spec.js", "lint": "standard src/index.js spec", "prepublishOnly": "npm run build" }, "publishConfig": { "access": "public" }, "homepage": "https://github.com/asciidoctor/opal-node-runtime", "bugs": "https://github.com/asciidoctor/opal-node-runtime/issues", "repository": { "type": "git", "url": "git://github.com/asciidoctor/opal-node-runtime.git" }, "dependencies": { "glob": "8.1.0", "unxhr": "1.2.0" }, "devDependencies": { "chai": "~4.3", "dirty-chai": "~2.0", "eslint": "~8.22", "mocha": "~10.0", "rollup": "~3.20", "rollup-plugin-re": "^1.0.7", "standard": "~17.0" }, "standard": { "env": { "mocha": true } } }