-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 949 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 949 Bytes
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
{
"name": "@investingwolf/alpaca-broker-api",
"version": "0.9.3",
"description": "Node.js client for alpaca broker API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx openapi-generator-cli generate && npx tsc",
"clean": "rm -rf dist api model",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jacob Parish",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/investingwolf/alpaca-broker-api.git"
},
"bugs": {
"url": "https://github.com/investingwolf/alpaca-broker-api/issues"
},
"homepage": "https://github.com/investingwolf/alpaca-broker-api#readme",
"keywords": [
"alpaca",
"broker"
],
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.3.3",
"@types/node": "^16.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"eventsource": "^1.1.0",
"request": "^2.88.2"
}
}