This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 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
80
{
"name": "wikibase-cli",
"version": "20.1.0",
"description": "A command-line interface to Wikibase",
"type": "module",
"main": "index.js",
"bin": {
"wb": "./bin/wb.js",
"wd": "./bin/wd.js"
},
"scripts": {
"docker:publish": "./scripts/docker_publish",
"git-pre-commit": "./scripts/githooks/pre-commit",
"lint": "eslint",
"lint-fix": "eslint --fix",
"lint-staged": "./scripts/lint_staged",
"prepublishOnly": "export MOCHA_OPTIONS='--bail'; npm run lint && npm test",
"postpublish": "npm run docker:publish && git push --tags",
"test": "export FORCE_COLOR=false; mocha --exit --timeout 20000 $MOCHA_OPTIONS tests",
"update-toc": "./scripts/update_toc"
},
"repository": {
"type": "git",
"url": "https://codeberg.org/maxlath/wikibase-cli"
},
"files": [
"bin",
"lib",
"metadata"
],
"imports": {
"#lib/*": "./lib/*.js",
"#metadata/*": "./metadata/*.js",
"#tests/*": "./tests/*.js"
},
"keywords": [
"wikidata",
"wikibase",
"wb",
"wd",
"cli"
],
"author": "maxlath",
"license": "MIT",
"bugs": {
"url": "https://codeberg.org/maxlath/wikibase-cli/issues"
},
"homepage": "https://codeberg.org/maxlath/wikibase-cli#readme",
"dependencies": {
"commander": "^6.0.0",
"copy-paste": "^1.5.0",
"lodash-es": "^4.17.21",
"mkdirp": "^3.0.1",
"open": "^9.1.0",
"read": "^2.1.0",
"shell-quote": "^1.8.1",
"split": "^1.0.1",
"through": "^2.3.8",
"tiny-chalk": "^4.0.0",
"wikibase-edit": "^8.0.6",
"wikibase-sdk": "^11.2.5",
"wikidata-lang": "^2.0.11"
},
"devDependencies": {
"@eslint/config-helpers": "^0.4.1",
"@eslint/js": "^9.38.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.4.2",
"@vercel/git-hooks": "^1.0.0",
"eslint": "^9.38.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1",
"mocha": "^9.1.3",
"should": "^13.2.3"
},
"engines": {
"node": ">= 20.12.0"
}
}