dukascopy-node-plus 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "dukascopy-node-plus",
3
+ "version": "1.0.0",
4
+ "description": "Node.js library for downloading historical market tick data for for Crypto, Stocks, ETFs, CFDs, Forex",
5
+ "main": "dist/index.js",
6
+ "module": "dist/esm/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "bin": {
12
+ "dukascopy-cli": "./dist/cli/index.js",
13
+ "dukascopy-node": "./dist/cli/index.js"
14
+ },
15
+ "scripts": {
16
+ "build": "rm -rf dist && tsup-node src/index.ts src/cli/index.ts --format esm,cjs --dts --legacy-output",
17
+ "test": "vitest run",
18
+ "coverage": "vitest run --coverage",
19
+ "format": "prettier --config .prettierrc 'src/**/*.ts' --write",
20
+ "lint": "eslint ./src --ext ts --ext js",
21
+ "type-check": "tsc --noEmit --skipLibCheck",
22
+ "gen:meta": "tsx src/utils/instrument-meta-data/generate-data.ts",
23
+ "gen:instruments-md": "tsx src/utils/instrument-meta-data/generate-instrument-md.ts",
24
+ "release": "standard-version && git push --follow-tags origin master && pnpm build && npm publish",
25
+ "release:beta": "pnpm build && npm publish --tag beta"
26
+ },
27
+ "author": {
28
+ "name": "Leonid Pyrlia",
29
+ "url": "https://www.linkedin.com/in/leonid-pyrlia/"
30
+ },
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/kyo06/dukascopy-node"
35
+ },
36
+ "homepage": "https://www.dukascopy-node.app",
37
+ "keywords": [
38
+ "dukascopy",
39
+ "stock-data",
40
+ "forex-data",
41
+ "historical-data",
42
+ "ohlc",
43
+ "tick-data",
44
+ "exchange-rates",
45
+ "commodities",
46
+ "cfd",
47
+ "crypto",
48
+ "ethusd",
49
+ "btcusd"
50
+ ],
51
+ "dependencies": {
52
+ "chalk": "3.0.0",
53
+ "cli-progress": "3.10.0",
54
+ "commander": "5.0.0",
55
+ "dayjs": "1.11.10",
56
+ "debug": "4.3.4",
57
+ "fastest-validator": "1.10.0",
58
+ "fs-extra": "10.1.0",
59
+ "lzma-purejs-requirejs": "1.0.0",
60
+ "node-fetch": "2.6.7",
61
+ "python-struct": "1.1.3"
62
+ },
63
+ "devDependencies": {
64
+ "@types/cli-progress": "3.9.2",
65
+ "@types/debug": "4.1.7",
66
+ "@types/fs-extra": "9.0.13",
67
+ "@types/node": "17.0.25",
68
+ "@types/node-fetch": "2.6.1",
69
+ "@typescript-eslint/eslint-plugin": "5.20.0",
70
+ "@typescript-eslint/parser": "5.20.0",
71
+ "eslint": "8.13.0",
72
+ "eslint-config-prettier": "8.5.0",
73
+ "eslint-plugin-prettier": "4.0.0",
74
+ "msw": "1.0.1",
75
+ "prettier": "2.6.2",
76
+ "standard-version": "9.3.2",
77
+ "tsup": "5.12.5",
78
+ "tsx": "3.12.2",
79
+ "typescript": "4.6.3",
80
+ "vite": "4.1.4",
81
+ "vitest": "0.28.5"
82
+ },
83
+ "engines": {
84
+ "node": ">=12"
85
+ }
86
+ }