-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "xapi",
"version": "0.6",
"description": "Trading robot for XTB",
"scripts": {
"x": "tsc && node dist/index.js",
"test": "jest",
"test-det": "jest --detectOpenHandles",
"cov": "jest --coverage",
"doc": "typedoc"
},
"repository": {
"url": "https://github.com/stav/xapi"
},
"author": "Steven Almeroth [email protected]",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-typescript": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/types": "^7.16.0",
"@jest/types": "^27.2.5",
"@types/config": "^0.0.39",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"babel-jest": "27.2",
"jest": "27.2",
"jshint": "^2.13.1",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.10",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"config": "^3.3.6",
"flatted": "^3.2.4",
"js-yaml": "^4.1.0",
"telegram": "^1.10.8",
"xapi-node": "^2.5.4"
}
}