-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "barnard59-shacl",
"version": "1.4.10",
"description": "A barnard59 step that validates RDF using the Shapes Constraint Language (SHACL).",
"type": "module",
"main": "index.js",
"scripts": {
"test": "mocha",
"prebuild": "rimraf -g *.d.ts **/*.d.ts",
"build": "tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/zazuko/barnard59.git",
"directory": "packages/shacl"
},
"keywords": [],
"author": "Zazuko GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/barnard59/issues"
},
"homepage": "https://github.com/zazuko/barnard59",
"dependencies": {
"@rdfjs/fetch": "^3.0.0",
"@rdfjs/to-ntriples": "^3.0.0",
"barnard59-base": "^2.4.2",
"barnard59-formats": "^4.0.0",
"barnard59-rdf": "^3.4.0",
"is-stream": "^3.0.0",
"rdf-validate-shacl": "^0.5.5",
"readable-stream": "3 - 4"
},
"devDependencies": {
"@tpluscode/rdf-string": "^1.1.2",
"@types/rdf-validate-shacl": "^0.4.7",
"assert-throws-async": "^3.0.0",
"barnard59-core": "^6.0.1",
"barnard59-env": "^1.2.5",
"barnard59-test-support": "*",
"chai": "^4.3.4",
"express": "^4.20.0",
"express-as-promise": "^1.2.0",
"get-stream": "^8.0.1",
"rdf-dataset-ext": "^1.1.0",
"sinon": "^15",
"string-to-stream": "^3.0.1"
},
"mocha": {
"recursive": true,
"require": "../../test/mocha-setup.cjs",
"loader": "ts-node/esm/transpile-only"
}
}