-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 1.92 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
78
79
80
81
82
{
"name": "citoid",
"version": "1.3.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/* && mocha ./test/features/errors/* && mocha ./test/features/app/*",
"coverage": "nyc --reporter=lcov _mocha"
},
"engines": {
"node": "20"
},
"dependencies": {
"bluebird": "^3.7.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"cheerio": "1.0.0-rc.12",
"chrono-node": "^2.7.5",
"compression": "^1.7.4",
"content-type": "1.0.2",
"express": "^4.19.2",
"extend": "^3.0.1",
"html-metadata": "^2.0.1",
"http-shutdown": "^1.2.1",
"iconv-lite": "0.4.15",
"ip": "^2.0.1",
"isbn3": "^1.0.6",
"js-yaml": "^3.13.1",
"nock": "^13.0.2",
"preq": "^0.5.12",
"request": "^2.88.0",
"service-runner": "^6.0.0",
"striptags": "^3.2.0",
"swagger-router": "^0.7.4",
"swagger-ui-dist": "^3.52.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"ajv": "^6.5.4",
"chai": "^4.3.0",
"eslint-config-wikimedia": "0.27.0",
"mocha": "^10.3.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": "[email protected]"
},
{
"name": "Danny Wu",
"email": "[email protected]"
},
{
"name": "Geoffrey Mon",
"email": "[email protected]"
},
{
"name": "Dan Michael O. Heggø",
"email": "[email protected]"
},
{
"name": "Marko Obrovac",
"email": "[email protected]"
}
]
}