-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 1003 Bytes
/
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
{
"name": "@rmlio/yarrrml-parser",
"version": "1.7.2",
"description": "Parse YARRRML descriptions into RML RDF statements",
"main": "lib/yarrrml2rml.js",
"scripts": {
"test": "mocha \"./lib/*.test.js\""
},
"keywords": [
"RML",
"YAML",
"parser",
"generator"
],
"author": "Ben De Meester",
"contributors": [
"Pieter Heyvaert (https://pieterheyvaert.com/)"
],
"license": "MIT",
"dependencies": {
"commander": "^9.4.1",
"extend": "^3.0.2",
"glob": "^8.0.3",
"graphy": "^4.3.5",
"js-logger": "^1.6.1",
"n3": "^1.16.3",
"parse-author": "^2.0.0",
"pkginfo": "^0.4.1",
"prefix-ns": "^0.1.2",
"q": "^1.5.1",
"rdf-isomorphic": "^1.3.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"mocha": "^10.1.0"
},
"bin": {
"yarrrml-parser": "./bin/parser.js",
"yarrrml-generator": "./bin/generator.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RMLio/yarrrml-parser.git"
}
}