forked from maxlath/wikibase-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.78 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.78 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
{
"name": "wikibase-cli",
"version": "16.2.1",
"description": "A command-line interface to Wikibase",
"main": "index.js",
"bin": {
"wb": "./bin/wb",
"wd": "./bin/wd"
},
"scripts": {
"docker:publish": "./scripts/docker_publish",
"lint": "eslint -c .eslintrc bin/wb* lib/* lib/*/* test/* test/lib/*",
"lint-staged": "./scripts/lint_staged",
"prepublishOnly": "npm run lint && npm test",
"postpublish": "npm run docker:publish && git push --tags",
"test": "mocha --exit --timeout 20000 $MOCHA_OPTIONS",
"update-toc": "./scripts/update_toc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/wikibase-cli.git"
},
"files": [
"bin",
"lib",
"metadata"
],
"keywords": [
"wikidata",
"wikibase",
"wb",
"wd",
"cli"
],
"author": "maxlath",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxlath/wikibase-cli/issues"
},
"homepage": "https://github.com/maxlath/wikibase-cli#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^6.0.0",
"copy-paste": "^1.3.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.0",
"open": "^7.0.4",
"read": "^1.0.7",
"shell-quote": "^1.7.3",
"split": "^1.0.1",
"through": "^2.3.8",
"wikibase-edit": "^5.2.0",
"wikibase-sdk": "^8.1.0",
"wikidata-lang": "^2.0.11"
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"git-hooks": "^1.1.10",
"mocha": "^9.1.3",
"should": "^13.2.3"
},
"engines": {
"node": ">= 10.0.0"
}
}