-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
86 lines (86 loc) · 2.3 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dukascopy-node",
"version": "1.42.0",
"description": "Node.js library for downloading historical market tick data for for Crypto, Stocks, ETFs, CFDs, Forex",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"dukascopy-cli": "./dist/cli/index.js",
"dukascopy-node": "./dist/cli/index.js"
},
"scripts": {
"build": "rm -rf dist && tsup-node src/index.ts src/cli/index.ts --format esm,cjs --dts --legacy-output",
"test": "vitest run",
"coverage": "vitest run --coverage",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint ./src --ext ts --ext js",
"type-check": "tsc --noEmit --skipLibCheck",
"gen:meta": "tsx src/utils/instrument-meta-data/generate-data.ts",
"gen:instruments-md": "tsx src/utils/instrument-meta-data/generate-instrument-md.ts",
"release": "standard-version && git push --follow-tags origin master && pnpm build && npm publish",
"release:beta": "pnpm build && npm publish --tag beta"
},
"author": {
"name": "Leonid Pyrlia",
"url": "https://www.linkedin.com/in/leonid-pyrlia/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Leo4815162342/dukascopy-node"
},
"homepage": "https://www.dukascopy-node.app",
"keywords": [
"dukascopy",
"stock-data",
"forex-data",
"historical-data",
"ohlc",
"tick-data",
"exchange-rates",
"commodities",
"cfd",
"crypto",
"ethusd",
"btcusd"
],
"dependencies": {
"chalk": "3.0.0",
"cli-progress": "3.10.0",
"commander": "5.0.0",
"dayjs": "1.11.10",
"debug": "4.3.4",
"fastest-validator": "1.10.0",
"fs-extra": "10.1.0",
"lzma-purejs-requirejs": "1.0.0",
"node-fetch": "2.6.7",
"python-struct": "1.1.3"
},
"devDependencies": {
"@types/cli-progress": "3.9.2",
"@types/debug": "4.1.7",
"@types/fs-extra": "9.0.13",
"@types/node": "17.0.25",
"@types/node-fetch": "2.6.1",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"msw": "1.0.1",
"prettier": "2.6.2",
"standard-version": "9.3.2",
"tsup": "5.12.5",
"tsx": "3.12.2",
"typescript": "4.6.3",
"vite": "4.1.4",
"vitest": "0.28.5"
},
"engines": {
"node": ">=12"
}
}