-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af1f184
commit b3e0a7c
Showing
3 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# `OSLO HTML Generator` | ||
|
||
> Given an OSLO-compliant RDF file, this tool generates an HTML file with the HTML layout | ||
## Install | ||
|
||
``` | ||
npm install @oslo-flanders/html-generator | ||
``` | ||
|
||
## Global install | ||
|
||
To use the service from the command line anywhere, you can install it globally. | ||
|
||
```bash | ||
npm install -g @oslo-flanders/html-generator | ||
``` | ||
|
||
## API | ||
|
||
## Usage | ||
|
||
```bash | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"name": "@oslo-flanders/html-generator", | ||
"version": "0.0.1-alpha.0", | ||
"description": "Generates an HTML file using an OSLO-compliant RDF file", | ||
"author": "Digitaal Vlaanderen <https://data.vlaanderen.be/id/organisatie/OVO002949>", | ||
"homepage": "https://github.com/informatievlaanderen/OSLO-UML-Transformer/tree/main/packages/oslo-generator-html#readme", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"bin": { | ||
"oslo-generator-respec": "./bin/runner.js" | ||
}, | ||
"directories": { | ||
"lib": "lib", | ||
"bin": "bin" | ||
}, | ||
"files": [ | ||
"lib/**/*.d.ts", | ||
"lib/**/*.js", | ||
"lib/**/*.njk", | ||
"bin/**/*.d.ts", | ||
"bin/**/*.js", | ||
"index.d.ts", | ||
"index.js" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Informatievlaanderen/OSLO-UML-Transformer.git" | ||
}, | ||
"scripts": { | ||
"build": "npm run build:ts", | ||
"build:ts": "tsc" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Informatievlaanderen/OSLO-UML-Transformer/issues" | ||
}, | ||
"dependencies": { | ||
"@oslo-flanders/core": "^0.0.14-alpha.0", | ||
"inversify": "^6.0.1", | ||
"n3": "^1.16.4", | ||
"nunjucks": "^3.2.4", | ||
"reflect-metadata": "^0.1.13", | ||
"yargs": "^17.7.2" | ||
}, | ||
"devDependencies": { | ||
"@rdfjs/types": "^1.1.0", | ||
"@types/nunjucks": "^3.2.2" | ||
}, | ||
"gitHead": "b8a15c4c91863a99770fcd716ca0ba1ead9bd85c" | ||
} | ||
|