-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.61 KB
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
{
"name": "@fugle/trade",
"version": "2.1.1",
"description": "FugleTrade API SDK for Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"coverage": "codecov",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"release": "standard-version"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fugle-dev/fugle-trade-node.git"
},
"keywords": [
"fugle",
"trade",
"fugle-trade",
"trading",
"stock"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fugle-dev/fugle-trade-node/issues"
},
"homepage": "https://github.com/fugle-dev/fugle-trade-node#readme",
"dependencies": {
"@fugle/trade-core": "^2.1.0",
"ini": "^2.0.0",
"inquirer": "^8.2.1",
"keytar": "^7.9.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/ini": "^1.3.31",
"@types/inquirer": "^8.2.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"jest": "^27.1.1",
"jest-websocket-mock": "^2.3.0",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=14"
}
}