-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "asciidoctor-jira",
"author": "Constantin Krüger (https://github.com/uniqueck)",
"license": "MIT",
"version": "4.1.2",
"bugs": {
"url": "https://github.com/doctoolchain/asciidoctor-jira/issues"
},
"main": "./lib/asciidoctor-jira.js",
"files": [
"lib"
],
"keywords": [
"asciidoctor",
"jira",
"antora"
],
"dependencies": {
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"sync-request": "^6.1.0",
"plantuml-encoder": "^1.4.0",
"unxhr": "1.2.0",
"rusha": "^0.8"
},
"devDependencies": {
"@antora/site-generator-default": "^3.1.7",
"@asciidoctor/core": "^2.2.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "^4.4.1",
"cheerio": "0.22.0",
"conventional-changelog-eslint": "^5.0.0",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.0",
"shx": "^0.3.4",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-ideal": "^1.0.0"
},
"peerDependencies": {
"@asciidoctor/core": "^2.2.6"
},
"scripts": {
"lfet:GenSrc": "exec java -classpath \"/opt/lfet/lib/*\" lohrfink.lfet.Application -gs \"$INIT_CWD/lfet/\" -rec -fnp \"*.lfet\" -sku -src \"JavaScript\"",
"test": "npm run test:antora && npm run test:node",
"test:antora": "mocha test/antora/**.spec.js",
"test:node": "mocha test/**.spec.js",
"lint": "eslint \"./lib/**/*.js\" \"./test/**/*.js\"",
"lint:fix": "eslint \"./lib/**/*.js\" \"./test/**/*.js\" --fix",
"clean": "shx rm -rf dist/*",
"release": "semantic-release"
},
"engines": {
"node": ">=18"
}
}