-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.95 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.95 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
{
"name": "publication-figure-retriever",
"version": "3.0.2",
"description": "This tool provides a method for retrieving figures from NCBI's PubMed publications using NIH APIs for open access and publicly available publications.",
"main": "index.ts",
"scripts": {
"audit:fix": "npm i && npm audit fix",
"build": "tsc",
"eslint:check": "eslint ./",
"eslint": "eslint --fix ./",
"prettier:check": "prettier --check ./",
"prettier": "prettier --write ./",
"lint:markdown": "markdownlint \"**/*.md\"",
"regen-package-lock": "rm -rf node_modules package-lock.json && npm run audit:fix",
"start": "npm run build && node ./build/index.js",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest",
"validate": "npm run prettier && npm run eslint && npm run lint:markdown && npm run test && npm run build"
},
"dependencies": {
"axios": "^1.16.1",
"throttled-queue": "^3.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.7.0",
"@types/xml2js": "^0.4.14",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"jest": "^30.4.2",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
},
"contributors": [
{
"name": "Alexander Sullivan",
"email": "alexjsully.connect@outlook.com",
"url": "https://alexjsully.me/"
}
],
"private": true,
"bugs": {
"url": "https://github.com/AlexJSully/Publication-Figure-Retrieval/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexJSully/Publication-Figure-Retrieval.git"
},
"keywords": [
"science",
"bioinformatics",
"nih-api",
"publication-data"
],
"license": "GNU General Public License v2.0",
"homepage": "https://github.com/AlexJSully/Publication-Figure-Retrieval#readme"
}