-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 1.84 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
74
75
76
77
{
"name": "hub",
"version": "1.0.0",
"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",
"lint": "eslint lib test",
"lint-fix": "eslint --fix lib test",
"test": "mocha",
"build": "./scripts/build",
"build-readme": "./scripts/build_readme && doctoc README.md",
"build-home": "./scripts/build_home",
"update-properties": "./scripts/update_properties"
},
"keywords": [
"wikidata",
"wikipedia",
"redirections",
"images"
],
"author": "maxlath",
"license": "AGPL-3.0",
"dependencies": {
"config": "^1.28.1",
"express": "^4.16.2",
"github-markdown-css": "^2.9.0",
"node-fetch": "^2.6.0",
"tiny-chalk": "^2.0.0",
"wikibase-cli": "^9.0.1",
"wikidata-lang": "^2.0.8",
"wikidata-sdk": "^8.1.1"
},
"devDependencies": {
"doctoc": "^1.3.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^15.0.0",
"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.2",
"git-hooks": "^1.1.9",
"marked": "^0.7.0",
"mocha": "^4.0.1",
"should": "^13.1.3",
"supervisor": "^0.12.0"
},
"standard": {
"ignore": [
"dist"
],
"globals": [
"it",
"xit",
"describe"
]
},
"engines": {
"node": ">= 8"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/hub.git"
},
"bugs": {
"url": "https://github.com/maxlath/hub/issues"
},
"homepage": "https://github.com/maxlath/hub#readme"
}