diff options
| author | Jakub Jirutka <jakub@jirutka.cz> | 2018-08-26 19:37:35 +0200 |
|---|---|---|
| committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-08-26 19:37:35 +0200 |
| commit | f1bf6e88a181ae392caf6b6204185fabb7ab35b9 (patch) | |
| tree | 602ec665c15b0ae64f434a73ca299cf97d5ad633 | |
| parent | 2c2ccd45626bb08158af7eb134a52b2ad0b4431f (diff) | |
JS: Fix dependencies, declare asciidoctor.js as peerDependency
| -rw-r--r-- | package.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/package.json b/package.json index 605be6e..f867750 100644 --- a/package.json +++ b/package.json @@ -27,8 +27,10 @@ "scripts": { "prepublishOnly": "bundle install && bundle exec rake build:js" }, - "dependencies": { - "asciidoctor.js": "~1.5.6", - "opal-runtime": "^1.0.3" + "devDependencies": { + "asciidoctor.js": "~1.5.6" + }, + "peerDependencies": { + "asciidoctor.js": "~1.5.6" } } |