-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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": "@reycodev/tradier-client",
"version": "0.2.0",
"description": "Node.js Tradier Brokerage API written in typescript. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc-watch -p tsconfig.json --onSuccess \"node dist/dev.js\"",
"build": "rm -rf dist && tsc -p tsconfig.json",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReycoDev/tradier-client.git"
},
"keywords": [
"tradier",
"tradier-api",
"stock-prices",
"market-data",
"finance",
"stocks"
],
"author": "Corey O'Donnell <me@coreyodonnell.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReycoDev/tradier-client/issues"
},
"homepage": "https://github.com/ReycoDev/tradier-client#readme",
"dependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"tsc-watch": "^2.4.0",
"typescript": "^3.5.3"
}
}