forked from zazuko/rdf-validate-shacl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "rdf-validate-shacl",
"version": "0.4.0",
"description": "RDF SHACL validator",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "mocha",
"test-ci": "npm run lint && nyc --reporter=lcov --reporter=text npm test",
"generate-vocabularies": "node scripts/generate-vocabularies.js"
},
"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/dataset": "^1.1.1",
"@rdfjs/namespace": "^1.0.0",
"@rdfjs/term-set": "^1.1.0",
"clownface": "^1.4.0",
"debug": "^4.3.2",
"rdf-literal": "^1.3.0",
"rdf-validate-datatype": "^0.1.4"
},
"devDependencies": {
"@rdfjs/parser-n3": "^1.1.4",
"@zazuko/rdf-vocabularies": "^2021.9.22-3",
"get-stream": "^6.0.0",
"mocha": "^9.1.3",
"nanoid": "^3.1.30",
"nyc": "^15.0.1",
"rdf-ext": "^1.3.5",
"rdf-utils-dataset": "1.1.0",
"standard": "^16.0.4"
},
"files": [
"/src",
"index.js"
],
"standard": {
"ignore": [
"/src/vocabularies/*"
]
}
}