forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.53 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.53 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
{
"name": "n8n-nodes-bion2n",
"version": "0.0.3",
"description": "Provides a set of nodes for n8n to interact with biodiversity informatics APIs including Bionomia, Barcode of Life (BOLD), Catalogue of Life (COL), ChecklistBank, Global Biodiversity Information Facility (GBIF), Global Names Architecture, Global Biotic Interactions (GloBI), Integrated Taxonomic Information System (ITIS), OpenAlex, OpenRefine, Open Tree of Life, TaxonWorks, Unpaywall, Wikidata, and ZooBank.",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Geoff Ower",
"email": "gdower@illinois.edu"
},
"repository": {
"type": "git",
"url": "https://github.com/SpeciesFileGroup/bion2n.git"
},
"engines": {
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
"build": "npx rimraf dist && tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/TaxonWorksProjectApi.credentials.js",
"dist/credentials/TaxonWorksUserApi.credentials.js"
],
"nodes": [
"dist/nodes/Bionomia/Bionomia.node.js",
"dist/nodes/Bold/Bold.node.js",
"dist/nodes/CatalogueOfLife/CatalogueOfLife.node.js",
"dist/nodes/ChecklistBankDataset/ChecklistBankDataset.node.js",
"dist/nodes/Gbif/Gbif.node.js",
"dist/nodes/GlobalNames/GlobalNames.node.js",
"dist/nodes/GloBI/GloBI.node.js",
"dist/nodes/Itis/Itis.node.js",
"dist/nodes/OpenAlex/OpenAlex.node.js",
"dist/nodes/OpenRefine/OpenRefine.node.js",
"dist/nodes/OpenTree/OpenTree.node.js",
"dist/nodes/TaxonWorks/TaxonWorks.node.js",
"dist/nodes/Unpaywall/Unpaywall.node.js",
"dist/nodes/Wikidata/Wikidata.node.js",
"dist/nodes/ZooBank/ZooBank.node.js"
]
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.6.0",
"@typescript-eslint/parser": "~8.32.0",
"eslint": "^9.30.1",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"globals": "^16.3.0",
"gulp": "^5.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.35.1"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}