-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.35 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/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": ">=18"
},
"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": "10.4.2",
"unxhr": "1.2.0"
},
"devDependencies": {
"chai": "~4.4",
"dirty-chai": "~2.0",
"eslint": "~9.5",
"mocha": "~10.4",
"rollup": "~3.29",
"rollup-plugin-re": "1.0.7",
"standard": "~17.1"
},
"standard": {
"env": {
"mocha": true
}
}
}