-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.47 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "citeclaw",
"version": "2.0.11",
"description": "Citation and bibliography toolkit for DOI, URL, arXiv, PDF, Zotero, and MCP workflows.",
"homepage": "https://github.com/trotsky1997/citeclaw",
"license": "Apache-2.0",
"main": "./app.js",
"bin": {
"citeclaw": "scripts/citeclaw.js"
},
"files": [
"app.js",
"config.dev.yaml",
"config.prod.yaml",
"config.yaml",
"lib/",
"routes/",
"scripts/citeclaw.js",
"scripts/botcite.js",
"server.js",
"spec.yaml",
"targets.yaml",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node ./server.js",
"prepack": "node -e \"require('fs').accessSync('./scripts/citeclaw.js')\"",
"pack:dry-run": "npm pack --dry-run",
"clean:zone-identifiers": "find . -type f -name '*:Zone.Identifier' -delete",
"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/* && mocha --exit ./test/features/scraping/*",
"test:zotero": "npm run lint && mocha --exit ./test* ",
"coverage": "nyc --reporter=lcov _mocha"
},
"engines": {
"node": "20 || 22 || 24"
},
"dependencies": {
"bluebird": "3.7.2",
"body-parser": "2.2.2",
"bunyan": "1.8.15",
"cheerio": "1.2.0",
"chrono-node": "2.9.0",
"citeproc": "2.4.63",
"compression": "1.8.1",
"content-type": "1.0.5",
"express": "5.2.1",
"extend": "3.0.2",
"html-metadata": "3.0.1",
"http-shutdown": "1.2.2",
"iconv-lite": "0.7.2",
"ip": "2.0.1",
"isbn3": "2.0.5",
"js-yaml": "4.1.1",
"preq": "0.5.14",
"service-runner": "6.0.0",
"striptags": "3.2.0",
"swagger-router": "0.7.4",
"swagger-ui-dist": "5.31.2",
"tough-cookie": "6.0.0",
"uuid": "13.0.0"
},
"devDependencies": {
"chai": "6.2.2",
"eslint-config-wikimedia": "0.32.3",
"mocha": "11.7.5",
"mocha.parallel": "0.15.6",
"nock": "14.0.11",
"nyc": "18.0.0",
"openapi-schema-validator": "12.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trotsky1997/citeclaw.git"
},
"bugs": {
"url": "https://github.com/trotsky1997/citeclaw/issues"
},
"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"
}
]
}