-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
73 lines (73 loc) · 1.87 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
66
67
68
69
70
71
72
73
{
"name": "wikibase-dump-filter",
"version": "6.0.0",
"type": "module",
"description": "Filter and format a newline-delimited JSON stream of Wikibase entities",
"main": "lib/index.js",
"bin": {
"wikibase-dump-filter": "bin/wikibase-dump-filter"
},
"files": [
"lib",
"scripts",
"docs"
],
"scripts": {
"git-pre-commit": "./scripts/githooks/pre-commit",
"init-fixtures": "./scripts/init_fixtures",
"lint-fix": "eslint -c .eslintrc.cjs --fix lib bin/wikibase-dump-filter tests",
"lint": "eslint -c .eslintrc.cjs lib bin/wikibase-dump-filter tests",
"postpublish": "git push --tags",
"prepublishOnly": "npm run lint && npm test",
"test": "mocha tests",
"update-toc": "./scripts/update_toc"
},
"keywords": [
"wikidata",
"wikibase",
"stream",
"filter",
"json",
"dump"
],
"author": "maxlath",
"license": "MIT",
"dependencies": {
"commander": "^2.9.0",
"lodash.difference": "^4.5.0",
"lodash.every": "^4.6.0",
"lodash.isplainobject": "^4.0.6",
"lodash.pick": "^4.4.0",
"lodash.some": "^4.6.0",
"lodash.throttle": "^4.1.1",
"split": "^1.0.0",
"through": "^2.3.8",
"wikibase-sdk": "^10.2.1"
},
"devDependencies": {
"@vercel/git-hooks": "^1.0.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"mocha": "^10.7.3",
"should": "^13.2.3"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/maxlath/wikibase-dump-filter.git"
},
"bugs": {
"url": "/~https://github.com/maxlath/wikibase-dump-filter/issues"
},
"homepage": "/~https://github.com/maxlath/wikibase-dump-filter#readme",
"engines": {
"node": ">= 14.0.0"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
}
}