-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
90 lines (90 loc) · 2.28 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "rdf-validate-shacl",
"version": "0.6.1",
"description": "RDF SHACL validator",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "mocha",
"benchmark-prepare": "test/data/benchmarks/prepare.sh",
"benchmark": "test/run-benchmark.js > benchmark.json",
"build": "tsc",
"prepack": "npm run build",
"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",
"@rdfjs/types": "^1.1.0",
"@vocabulary/sh": "^1.1.5",
"clownface": "^2.0.0",
"debug": "^4.3.2",
"rdf-dataset-ext": "^1.1.0",
"rdf-literal": "^1.3.2",
"rdf-validate-datatype": "^0.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@rdfjs/parser-n3": "^2.0.1",
"@tpluscode/eslint-config": "^0.5",
"@types/chai": "^5.2.1",
"@types/chai-as-promised": "^8.0.2",
"@types/clownface": "^2.0.5",
"@types/debug": "^4.1.12",
"@types/n3": "^1",
"@types/node": "^20.10.6",
"@types/rdfjs__environment": "^1.0.0",
"@types/sinon": "^17.0.4",
"@types/sinon-chai": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@zazuko/env-node": "^2",
"@zazuko/shacl-test": "^0.1.1",
"bench-node": "^0.5.2",
"c8": "^8.0.1",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.8.3",
"get-stream": "^6.0.0",
"mocha": "^10.2.0",
"mocha-chai-rdf": "^0.1.8",
"nanoid": "^4.0.2",
"n3": "^1",
"rdf-ext": "^2.5.1",
"rdf-utils-dataset": "^2.0.0",
"sinon": "^20.0.0",
"sinon-chai": "^4.0.0",
"tsx": "^4.19.3",
"typescript": "^5.3.3"
},
"files": [
"src/*.js",
"src/*.d.ts",
"index.js",
"index.d.ts",
"CHANGELOG.md"
],
"mocha": {
"require": [
"tsx",
"test/mocha-setup.js"
],
"ignore": "test/run-benchmark.js"
}
}