forked from solid/catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.59 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.59 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
79
{
"name": "solid-efforts-core",
"version": "1.0.0",
"type": "module",
"description": "",
"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": "npm run test:syntax && npm run test:shacl && npm run test:webid",
"all": "npm run build && npx catalog format && npm run test"
},
"keywords": [],
"author": {
"name": "elf Pavlik",
"url": "https://elf-pavlik.hackers4peace.net"
},
"license": "MIT",
"dependencies": {
"@comunica/query-sparql-rdfjs": "^4.3.0",
"commander": "^14.0.0",
"dotenv": "^17.2.2",
"matrix-js-sdk": "^38.0.0",
"node-w3capi": "^2.2.0",
"rdf-dereference-store": "^1.4.0"
},
"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"
},
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
],
"repositoryUrl": "https://github.com/elf-pavlik/solid-efforts-core",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/git"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}