-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 877 Bytes
/
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
{
"name": "myfxbook-api-client",
"version": "1.0.4",
"description": "Myfxbook API client for Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "./node_modules/jest/bin/jest.js",
"build": "./node_modules/typescript/bin/tsc -p tsconfig.json",
"call": "./node_modules/ts-node/dist/bin.js src/index.ts"
},
"author": "leonid.pyrlia",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Leo4815162342/myfxbook-api-client.git"
},
"keywords": [
"myfxbook",
"forex",
"api",
"metatrader"
],
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/node-fetch": "^2.5.0",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}