-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
73 lines (73 loc) · 2.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
{
"name": "webull-api-ts",
"version": "0.1.0",
"description": "Webull trading API for node-js",
"main": "./dist/index.js",
"files": [
"/dist/index.js",
"/dist/index.d.ts",
"/dist/utils",
"/dist/tests"
],
"scripts": {
"compile": "tsc",
"check": "tsc --noEmit",
"watch": "tsc --watch",
"lint": "npx eslint .",
"lint-fix": "npx eslint --fix .",
"format": "npx prettier --write .",
"dev-checkout": "git checkout dev",
"commit": "npm run dev-checkout && tsc && npm run test && git add . && git commit -m",
"bump-patch": "npm run dev-checkout && npm version patch",
"bump-minor": "npm run dev-checkout && npm version minor",
"bump-major": "npm run dev-checkout && npm version major",
"release": "npm run dev-checkout && git push origin dev && git checkout master && git merge dev && git push origin master && git push --tags && git checkout dev",
"release-patch": "npm run bump-patch && npm run doc && npm run release",
"release-minor": "npm run bump-minor && npm run doc && npm run release",
"release-major": "npm run bump-major && npm run doc && npm run release",
"test": "npx mocha dist/tests",
"doc": "npx typedoc",
"start": "node ./dist/driver.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/edmundpf/webull-api-ts.git"
},
"keywords": [
"trading",
"nyse",
"webull",
"robinhood",
"stocks",
"finance",
"options",
"futures"
],
"author": "Edmund Pfeil <edmundpf@buffalo.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/edmundpf/webull-api-ts/issues"
},
"homepage": "https://github.com/edmundpf/webull-api-ts#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "*",
"@types/inquirer": "^6.5.0",
"@types/md5": "^2.1.33",
"@types/mocha": "*",
"@types/node": "*",
"chai": "*",
"mocha": "^7.2.0",
"typedoc": "*",
"typedoc-plugin-markdown": "*"
},
"dependencies": {
"axios": "^0.19.2",
"date-fns": "^2.10.0",
"inquirer": "^7.0.6",
"json-config-ts": "^1.0.1",
"md5": "^2.2.1",
"serialize-error": "^5.0.0",
"uuidv4": "^6.0.6"
}
}