-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "publication-figure-retriever",
"version": "3.0.1",
"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": {
"build": "tsc",
"eslint": "eslint --fix ./",
"eslint:check": "eslint ./",
"prettier": "prettier --write ./",
"prettier:check": "prettier --check ./",
"start": "npm run build && node ./build/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"validate": "npm run prettier && npm run eslint && npm run test:coverage && npm run build"
},
"dependencies": {
"axios": "^1.7.7",
"fs": "^0.0.1-security",
"throttled-queue": "^2.1.4",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/xml2js": "^0.4.14",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"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"
}