forked from samuelmr/nordpool-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 815 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
39
40
41
42
43
{
"name": "nordpool",
"type": "module",
"version": "4.0.0",
"description": "Nord Pool ELSPOT API client",
"main": "index.js",
"exports": "./index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha"
},
"tonicExampleFilename": "./examples/hourly.js",
"keywords": [
"nordpool",
"api",
"energy",
"prices",
"volume",
"capacity",
"flow"
],
"author": "Samuel Rinnetmäki",
"repository": {
"type": "git",
"url": "http://github.com/samuelmr/nordpool-node.git"
},
"license": "MIT",
"dependencies": {
"dayjs": "^1.10.2",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^9.1.1",
"nock": "^13.1.3"
},
"files": [
"lib/",
"config.js"
],
"engines": {
"node": ">= 8.0.0"
}
}