-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 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
{
"name": "@zazuko/trifid-plugin-ckan",
"version": "4.2.2",
"description": "Endpoint for opendata.swiss CKAN harvester",
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"scripts": {
"test": "c8 --all --reporter=lcovonly --reporter=text node --test **/*.test.js",
"example-instance": "node test/support/run-instance.js",
"clean": "rimraf dist/",
"prebuild": "npm run clean",
"build": "tsc",
"prepack": "npm run build"
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/zazuko/trifid.git",
"directory": "packages/ckan"
},
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"homepage": "https://github.com/zazuko/trifid#readme",
"license": "Apache-2.0",
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"ckan"
],
"dependencies": {
"@tpluscode/rdf-string": "^1.3.3",
"@zazuko/env": "^2.5.1",
"@zazuko/prefixes": "^2.1.1",
"dotenv": "^16.4.7",
"is-graph-pointer": "^2.1.0",
"sparql-http-client": "^3.0.1",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/node": "^22.13.0",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-subset": "^1.6.0",
"rimraf": "^6.0.1",
"trifid-core": "^5.1.0",
"trifid-handler-fetch": "^3.3.4",
"typescript": "^5.7.3",
"xml2js": "^0.6.2",
"xml2js-xpath": "^0.13.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}