-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"name": "@seqera/node-red-seqera",
"version": "1.5.1",
"description": "Node-RED nodes for interacting with the Seqera Platform API",
"author": "Phil Ewels <phil.ewels@seqera.io>",
"license": "Apache-2.0",
"homepage": "https://github.com/seqeralabs/node-red-seqera#readme",
"bugs": "https://github.com/seqeralabs/node-red-seqera/issues",
"repository": {
"type": "git",
"url": "https://github.com/seqeralabs/node-red-seqera"
},
"keywords": [
"node-red",
"seqera",
"platform",
"tower",
"nextflow",
"bioinformatics",
"workflow",
"pipeline"
],
"scripts": {
"test": "mocha \"test/**/*_spec.js\" --timeout 10000",
"test:coverage": "nyc npm test",
"test:ci": "nyc --reporter=lcov npm test"
},
"dependencies": {
"axios": "^1.10.0",
"form-data": "^4.0.3"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nock": "^13.5.0",
"node-red": "^3.1.0",
"node-red-node-test-helper": "^0.3.3",
"nyc": "^15.1.0",
"sinon": "^17.0.1"
},
"engines": {
"node": ">=12.0.0"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"seqera-config": "nodes/config.js",
"seqera-workflow-launch": "nodes/workflow-launch.js",
"seqera-workflow-monitor": "nodes/workflow-monitor.js",
"seqera-workflow-poll": "nodes/workflow-poll.js",
"seqera-dataset-add": "nodes/dataset-add.js",
"seqera-datalink-list": "nodes/datalink-list.js",
"seqera-datalink-poll": "nodes/datalink-poll.js",
"seqera-studios-add": "nodes/studios-add.js",
"seqera-studios-monitor": "nodes/studios-monitor.js"
},
"examples": {
"Seqera Platform": "examples"
}
}
}