-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 802 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 802 Bytes
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
{
"name": "node-ncbi",
"version": "0.7.4",
"description": "Access and parse the NCBI eUtils API in Node or the Browser",
"keywords": [
"pubmed",
"ncbi",
"biology",
"medicine",
"research"
],
"main": "index.js",
"types": "types/node-ncbi.d.ts",
"scripts": {
"start": "node ./bin/repl",
"test": "npx mocha"
},
"author": {
"name": "Casey Ydenberg",
"email": "hi@caydenberg.io",
"url": "https://caydenberg.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/CAYdenberg/node-ncbi.git"
},
"dependencies": {
"axios": "^1.13.2",
"immutability-helper": "^3.1.1",
"xml2js": "^0.5.0"
},
"devDependencies": {
"check-types": "^7.0.1",
"mocha": "^10.1.0",
"open": "^6.3.0"
},
"license": "MIT"
}