-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
70
71
72
73
74
75
76
77
{
"name": "@comake/rmlmapper-js",
"version": "0.5.2",
"description": "A mapper for the RDF mapping language",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"jest": "jest --coverage",
"lint": "eslint . --cache --ignore-path .gitignore --max-warnings 0",
"test": "npm run test:ts && npm run jest",
"test:ts": "tsc -p test --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/comake/rmlmapper-js"
},
"bugs": {
"url": "https://github.com/comake/rmlmapper-js/issues"
},
"homepage": "https://github.com/comake/rmlmapper-js#readme",
"keywords": [
"rml",
"RML Mapper",
"Semantic Web",
"RDF Mapping language",
"rdf",
"json-ld"
],
"author": {
"name": "Adler Faulkner",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"csvjson": "^5.1.0",
"fontoxpath": "^3.26.2",
"jsonld": "^8.1.0",
"jsonpath-plus": "^7.0.0",
"language-tags": "^1.0.5",
"mime-types": "^2.1.35",
"n3": "^1.16.2",
"slimdom": "^4.0.1",
"uuid": "^9.0.0",
"xpath": "^0.0.32"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^27.4.0",
"@types/jsonld": "^1.5.6",
"@types/language-tags": "^1.0.1",
"@types/mime-types": "^2.1.1",
"@types/n3": "^1.10.4",
"@types/node": "^18.0.3",
"@types/utm": "^1.1.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"colors": "^1.4.0",
"diff": "^5.1.0",
"eslint": "^8.14.0",
"eslint-config-es": "^3.26.13",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-tsdoc": "^0.2.16",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"files": [
"dist"
]
}