-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "rdf-validate-shacl",
"version": "0.5.6",
"description": "RDF SHACL validator",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "mocha",
"release": "changeset publish"
},
"author": "Zazuko (https://zazuko.com)",
"repository": {
"type": "git",
"url": "https://github.com/zazuko/rdf-validate-shacl.git"
},
"license": "MIT",
"keywords": [
"rdf",
"shacl",
"validation"
],
"dependencies": {
"@rdfjs/data-model": "^2",
"@rdfjs/dataset": "^2",
"@rdfjs/environment": "^1",
"@rdfjs/namespace": "^2.0.0",
"@rdfjs/term-set": "^2.0.1",
"@vocabulary/sh": "^1.0.1",
"clownface": "^2.0.0",
"debug": "^4.3.2",
"rdf-literal": "^1.3.0",
"rdf-validate-datatype": "^0.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@rdfjs/parser-n3": "^2.0.1",
"@tpluscode/eslint-config": "^0.4.4",
"@zazuko/env-node": "^2",
"c8": "^8.0.1",
"get-stream": "^6.0.0",
"mocha": "^10.2.0",
"nanoid": "^4.0.2",
"rdf-ext": "^2.5.1",
"rdf-utils-dataset": "^2.0.0"
},
"files": [
"/src",
"index.js"
]
}