forked from amircp/cTrader-Layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "@reiryoku/ctrader-layer",
"version": "2.2.1",
"description": "A Node.js communication layer for cTrader Open API",
"license": "MIT",
"homepage": "https://github.com/Reiryoku-Technologies/cTrader-Layer",
"bugs": {
"url": "https://github.com/Reiryoku-Technologies/cTrader-Layer/issues"
},
"author": {
"name": "Vasile Pește / Reiryoku Technologies",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Reiryoku-Technologies/cTrader-Layer.git"
},
"scripts": {
"lint": "eslint . --ext .ts,.js",
"build": "ttsc",
"safe-build": "rm -rf ./build && npm run lint && npm run build",
"prepublishOnly": "npm run safe-build"
},
"main": "./build/entry/node/main.js",
"types": "./build/entry/node/main.d.ts",
"files": [
"build",
"entry",
"protobuf",
"src"
],
"dependencies": {
"axios": "0.21.1",
"protobufjs": "5.0.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@reiryoku/eslint-config-reiryoku": "^1.0.0",
"@types/node": "^12.7.2",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"ttypescript": "^1.5.12",
"typescript": "^4.3.2",
"typescript-transform-paths": "^2.2.4"
}
}