-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 3.16 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@hastobegood/crypto-bot-artillery",
"version": "0.17.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hastobegood/crypto-bot-artillery.git"
},
"engines": {
"node": "16"
},
"type": "module",
"main": "lib/cjs/src/index.js",
"module": "lib/esm/src/index.js",
"exports": {
".": {
"require": "./lib/cjs/src/index.js",
"import": "./lib/esm/src/index.js"
},
"./common": {
"require": "./lib/cjs/src/common/index.js",
"import": "./lib/esm/src/common/index.js"
},
"./candlestick": {
"require": "./lib/cjs/src/candlestick/index.js",
"import": "./lib/esm/src/candlestick/index.js"
},
"./order": {
"require": "./lib/cjs/src/order/index.js",
"import": "./lib/esm/src/order/index.js"
},
"./ticker": {
"require": "./lib/cjs/src/ticker/index.js",
"import": "./lib/esm/src/ticker/index.js"
},
"./test/builders": {
"require": "./lib/cjs/test/builders/index.js",
"import": "./lib/esm/test/builders/index.js"
}
},
"types": "lib/esm/src/index.d.ts",
"typesVersions": {
"*": {
"*": [
"lib/esm/src/index.d.ts"
],
"common": [
"lib/esm/src/common/index.d.ts"
],
"candlestick": [
"lib/esm/src/candlestick/index.d.ts"
],
"order": [
"lib/esm/src/order/index.d.ts"
],
"ticker": [
"lib/esm/src/ticker/index.d.ts"
],
"test/builders": [
"lib/esm/test/builders/index.d.ts"
]
}
},
"scripts": {
"prepare": "yarn husky install",
"clean": "rm -rf out lib reports",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "yarn tsc",
"build:cjs": "yarn tsc -p tsconfig-cjs.json && echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
"test": "yarn jest",
"test:coverage": "yarn jest --collectCoverage",
"lint": "yarn eslint . --ext .ts",
"lint:fix": "yarn eslint . --ext .ts --fix",
"lint:report": "yarn eslint . --ext .ts --format json -o reports/eslint-report.json "
},
"dependencies": {
"@hastobegood/crypto-clients-binance": "^0.11.0",
"joi": "^17.6.0",
"keyv": "^4.3.0",
"lodash": "^4.17.21",
"pino": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/lodash": "^4.14.182",
"@types/node": "16",
"@types/pino": "^7.0.5",
"@types/randomstring": "^1.1.8",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-sonar-reporter": "^2.0.0",
"mockdate": "^3.0.5",
"prettier": "^2.6.2",
"randomstring": "^1.2.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"files": [
"lib/cjs/src",
"lib/cjs/test/builders",
"lib/cjs/package.json",
"lib/esm/src",
"lib/esm/test/builders"
],
"jestSonar": {
"reportPath": "reports"
}
}