-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 837 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 837 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
{
"name": "@echelon/corona",
"version": "0.1.0",
"description": "CORONA — Coronal Oracle & Realtime Observation Network Agent. Space weather intelligence construct for Echelon.",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./oracles/*": "./src/oracles/*.js",
"./processor/*": "./src/processor/*.js",
"./theatres/*": "./src/theatres/*.js",
"./rlmf/*": "./src/rlmf/*.js"
},
"scripts": {
"test": "node --test tests/corona_test.js",
"poll": "node src/oracles/swpc.js",
"poll:donki": "node src/oracles/donki.js"
},
"keywords": [
"echelon",
"construct",
"space-weather",
"solar-flare",
"geomagnetic-storm",
"prediction-market",
"rlmf"
],
"license": "MIT",
"dependencies": {}
}