This repository was archived by the owner on May 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.88 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": "hub",
"version": "1.0.0",
"type": "module",
"description": "Web hub based on Wikidata",
"main": "lib/server.js",
"scripts": {
"start": "export FORCE_COLOR=true; node ./lib/server.js",
"watch": "supervisor -w lib,config ./lib/server.js",
"postinstall": "./scripts/postinstall.sh",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "mocha $MOCHA_OPTIONS",
"build": "./scripts/build.sh",
"build-readme": "./scripts/build_readme.js && doctoc README.md",
"build-home": "./scripts/build_home.sh",
"update-properties": "./scripts/update_properties.sh"
},
"keywords": [
"wikidata",
"wikipedia",
"redirections",
"images"
],
"author": "maxlath",
"license": "AGPL-3.0",
"dependencies": {
"config": "^4.1.1",
"express": "^4.16.2",
"github-markdown-css": "^2.9.0",
"node-fetch": "^3.3.2",
"tiny-chalk": "^3.0.2",
"wikibase-cli": "^19.2.1",
"wikibase-sdk": "^11.1.1",
"wikidata-lang": "^2.0.8"
},
"devDependencies": {
"@eslint/config-helpers": "^0.5.0",
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/express": "^5.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"doctoc": "^1.3.0",
"eslint": "^9.39.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"marked": "^0.7.0",
"mocha": "^11.7.5",
"should": "^13.2.3",
"supervisor": "^0.12.0"
},
"standard": {
"ignore": [
"dist"
],
"globals": [
"it",
"xit",
"describe"
]
},
"engines": {
"node": ">= 20"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://codeberg.org/maxlath/hub"
},
"bugs": {
"url": "https://codeberg.org/maxlath/hub/issues"
},
"homepage": "https://codeberg.org/maxlath/hub#readme"
}