forked from spring-io/asciidoctor-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@springio/asciidoctor-extensions",
"version": "1.0.0-alpha.4",
"description": "Asciidoctor.js extensions that support the Spring documentation.",
"license": "ASL-2.0",
"author": "OpenDevise Inc. (https://opendevise.com)",
"contributors": [
"Dan Allen <[email protected]>",
"Sarah White <[email protected]>",
"Phil Webb <[email protected]>",
"Andy Wilkinson"
],
"repository": "github:spring-io/asciidoctor-extensions",
"bugs": {
"url": "https://github.com/spring-io/asciidoctor-extensions/issues"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"coverage": "nyc _mocha",
"build": "npm test && npm run lint",
"format": "node npm/format.js lib,test,npm",
"lint": "eslint \"{lib,test,npm}/**/*.js\"",
"prepublishOnly": "npx -y downdoc --prepublish",
"postpublish": "npx -y downdoc --postpublish",
"test": "_mocha",
"version": "node npm/version.js"
},
"main": "lib/index.js",
"browser": {
"./source-toolbox": "./browser/js/source-toolbox.js"
},
"style": {
"./source-toolbox": "./browser/css/source-toolbox.css"
},
"exports": {
".": "./lib/index.js",
"./tabs-migration-antora-extension": "./lib/tabs-migration-antora-extension.js",
"./code-chomping-extension": "./lib/code-chomping-extension.js",
"./code-folding-extension": "./lib/code-folding-extension.js",
"./browser/css/source-toolbox.css": "./browser/css/source-toolbox.css"
},
"imports": {
"#package": "./package.json"
},
"files": [
"browser",
"lib"
],
"keywords": [
"asciidoc",
"asciidoctor",
"extension"
],
"devDependencies": {
"@asciidoctor/core": "latest",
"chai": "~4.3",
"chai-fs": "~2.0",
"chai-spies": "~1.0",
"dirty-chai": "~2.0",
"eslint": "~8.29",
"eslint-config-standard": "~17.0",
"mocha": "~10.1",
"nyc": "~15.1",
"prettier-eslint": "~15.0"
},
"nyc": {
"cache": true,
"cacheDir": "node_modules/.cache/nyc",
"include": [
"lib/*.js"
],
"reporter": [
"cobertura",
"lcov",
"text"
],
"reportDir": "reports"
}
}