forked from maxlath/wikibase-dump-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.85 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": "5.0.5",
"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": {
"test": "mocha",
"lint": "eslint -c .eslintrc lib bin/wikibase-dump-filter test",
"lint-fix": "eslint -c .eslintrc --fix lib bin/wikibase-dump-filter test",
"init-fixtures": "./scripts/init_fixtures",
"update-toc": "./scripts/update_toc",
"prepublishOnly": "npm run lint && npm test",
"postpublish": "git push --tags"
},
"keywords": [
"wikidata",
"wikibase",
"stream",
"filter",
"json",
"dump"
],
"author": "maxlath",
"license": "MIT",
"dependencies": {
"commander": "^2.9.0",
"lodash.difference": "^4.2.0",
"lodash.every": "^4.6.0",
"lodash.isplainobject": "^4.0.6",
"lodash.pick": "^4.2.0",
"lodash.some": "^4.6.0",
"lodash.throttle": "^4.1.1",
"split": "^1.0.0",
"through": "^2.3.8",
"wikibase-sdk": "^7.9.1"
},
"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.7",
"mocha": "^7.1.1",
"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": ">= 6.4.0"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
}
}