This repository was archived by the owner on Feb 11, 2026. It is now read-only.
forked from wikimedia/mediawiki-services-citoid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.88 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.88 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
81
82
{
"name": "citoid",
"version": "1.1.0",
"description": "Converts search terms such as URL or DOI into citations.",
"homepage": "https://www.mediawiki.org/wiki/Citoid",
"license": "Apache-2.0",
"main": "./app.js",
"scripts": {
"start": "service-runner",
"lint": "eslint --max-warnings 0 --cache .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && mocha ./test/features/unit/*",
"coverage": "nyc --reporter=lcov _mocha"
},
"dependencies": {
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"cheerio": "0.22.0",
"chrono-node": "1.3.5",
"compression": "^1.7.4",
"content-type": "1.0.2",
"express": "^4.17.1",
"extend": "^3.0.1",
"html-metadata": "1.7.1",
"http-shutdown": "^1.2.1",
"iconv-lite": "0.4.15",
"ip": "1.1.5",
"isbn3": "^1.0.6",
"js-yaml": "^3.13.1",
"nock": "^13.0.2",
"preq": "^0.5.12",
"request": "^2.88.0",
"service-runner": "^2.8.4",
"striptags": "3.0.1",
"swagger-router": "^0.7.4",
"swagger-ui-dist": "^3.22.3",
"tough-cookie": "2.3.3",
"uuid": "^8.3.0",
"xml2js": "0.4.19"
},
"devDependencies": {
"ajv": "^6.5.4",
"chai": "^4.3.0",
"eslint": "7.16.0",
"eslint-config-wikimedia": "0.20.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha.parallel": "^0.15.6",
"nyc": "^14.1.1",
"openapi-schema-validator": "^7.0.1"
},
"repository": {
"type": "git",
"url": "https://gerrit.wikimedia.org/r/mediawiki/services/citoid"
},
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/citoid/"
},
"contributors": [
{
"name": "Marielle Volz",
"email": "marielle.volz@gmail.com"
},
{
"name": "Danny Wu",
"email": "utf8snowman@gmail.com"
},
{
"name": "Geoffrey Mon",
"email": "geofbot@gmail.com"
},
{
"name": "Dan Michael O. Heggø",
"email": "danmichaelo@gmail.com"
},
{
"name": "Marko Obrovac",
"email": "mobrovac@wikimedia.org"
}
]
}