-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.68 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.68 KB
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
{
"name": "solid-catalog",
"version": "2.0.0",
"type": "module",
"description": "-- a listing of things useful to the Solid Community",
"main": "catalog.html",
"bin": {
"catalog": "cli/index.ts"
},
"scripts": {
"prepare": "husky",
"build": "rdf-transform-cli ./catalog-shacl.shce ./catalog-shacl.ttl -p",
"test:syntax": "rdf-dereference ./catalog-shacl.ttl > /dev/null && echo '✓ SHACL' && rdf-dereference ./catalog-skos.ttl > /dev/null && echo '✓ SKOS' && rdf-dereference ./catalog-data.ttl > /dev/null && echo '✓ CATALOG-DATA.TTL'",
"test:shacl": "rdf-ext-cli --shacl-url ./catalog-shacl.ttl ./catalog-data.ttl --pretty --output-prefix sh=http://www.w3.org/ns/shacl# --output-prefix skos=http://www.w3.org/2004/02/skos/core# --output-prefix ex=http://example.org/# --output-prefix xsd=http://www.w3.org/2001/XMLSchema# --shacl-details --shacl-error",
"test:webid": "npx catalog validate webid && echo '✓ WebID'",
"test:types": "echo 'validate types & predicates' && node viewer/validateTypes",
"test": "npm run test:syntax && npm run test:shacl && npm run test:webid && npm run test:types",
"all": "npm run build && npx catalog format && npm run test"
},
"keywords": [],
"author": "Jeff Zucker",
"license": "MIT",
"dependencies": {
"@comunica/query-sparql-rdfjs": "^4.3.0",
"commander": "^14.0.0",
"mashlib": "^1.10.4",
"node-w3capi": "^2.2.0",
"streamify-string": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@jeswr/pretty-turtle": "^1.8.2",
"@rdfjs/types": "^2.0.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/n3": "^1.26.0",
"husky": "^9.0.11",
"n3": "^1.26.0",
"rdf-dereference": "^4.0.0",
"rdf-ext-cli": "^0.1.6",
"rdf-parse": "^4.0.0",
"rdf-transform-cli": "^1.1.0",
"rdf-vocabulary": "^1.0.1",
"semantic-release": "^24.2.5",
"shacl-engine": "^1.0.2",
"solid-node-client": "^3.0.0"
},
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
],
"repositoryUrl": "https://github.com/solid/catalog",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/git"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}