-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.3 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
{
"name": "asciidoctor-liquibase",
"version": "1.2.5",
"license": "MIT",
"keywords": [
"asciidoctor",
"asciidoctor.js",
"liquibase",
"antora"
],
"author": {
"name": "Constantin Krüger",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/uniqueck/asciidoctor-liquibase.git"
},
"description": "Asciidoctor.js extension to render liquibase changesets as entity relationship diagram",
"dependencies": {
"xml2js": "^0.4",
"yaml": "^2.3.1"
},
"devDependencies": {
"@antora/cli": "^3.1",
"@antora/site-generator-default": "^3.1",
"@cucumber/cucumber": "^9.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"asciidoctor-plantuml": "1.5.0",
"chai": "4.3.7",
"conventional-changelog-eslint": "^4.0.0",
"eslint": "^8.42.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^9.1.3",
"referee": "^1.2.0",
"rimraf": "^3.0.2",
"semantic-release": "^21.0.5",
"nyc": "^15.1.0"
},
"peerDependencies": {
"@asciidoctor/core": "^2.2"
},
"scripts": {
"release": "semantic-release",
"test": "npm run test:node && npm run test:antora && npm run test:features",
"test:antora": "mocha test/antora/**.spec.js",
"test:node": "mocha test/**.spec.js",
"test:features": "cucumber-js",
"lint": "eslint './lib/**/*.js' './test/**/*.js'",
"lint:fix": "eslint './lib/**/*.js' './test/**/*.js' --fix",
"prepack": "npm t",
"pretest": "npm run lint",
"lfet": "npm run lfet:GenSrc && npm run lfet:GenTest && npm run lint",
"lfet:GenSrc": "exec java -classpath \"/opt/lfet/lib/*\" lohrfink.lfet.Application -gs \"$INIT_CWD/lfet/\" -rec -fnp \"*.lfet\" -sku -src \"JavaScript\"",
"lfet:GenTest": "exec java -classpath \"/opt/lfet/lib/*\" lohrfink.lfet.Application -GenTest -Directory \"$INIT_CWD/lfet/\" -Recursive -FileNamePattern \"*.lfet\" -intags \"cucumber\" -OutputRootfolder \"$INIT_CWD/test/features\" -ContinueOnError"
},
"files": [
"lib",
"CHANGELOG.md"
],
"main": "lib/asciidoctor-liquibase.js",
"bugs": {
"url": "https://github.com/uniqueck/asciidoctor-liquibase/issues"
}
}