-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "rocketrml",
"version": "2.1.2",
"description": "This is a mapper for the RDF mapping language",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"format": "prettier --write src/**",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"test": "mocha tests/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/semantifyit/RocketRML"
},
"keywords": [
"rml",
"rocketrml",
"RML Mapper",
"Semantic Web",
"RDF Mapping language",
"RDF",
"json-ld"
],
"homepage": "https://semantify.it",
"author": "STI Innsbruck",
"license": "CC-BY-SA",
"dependencies": {
"@xmldom/xmldom": "^0.8.6",
"csv-parse": "^5.3.3",
"fontoxpath": "^3.28.2",
"html2plaintext": "^2.1.4",
"jsonld": "^5.2.0",
"jsonpath-plus": "^7.2.0",
"language-tags": "^1.0.7",
"n3": "^1.16.3",
"slimdom": "^4.1.0",
"utm": "^1.1.1",
"xpath": "^0.0.32"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"colors": "^1.4.0",
"diff": "^5.1.0",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.2.0",
"prettier": "^2.8.1"
},
"optionalDependencies": {
"xpath-iterator": "git+https://abc@github.com/ThibaultGerrier/XpathIterator#647ba7c2973b3feadcc010f83f7086fe043e0810"
},
"files": [
"LICENSE",
"index.js",
"src/",
"Readme.md"
]
}