forked from alpacahq/alpaca-trade-api-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "@alpacahq/alpaca-trade-api",
"version": "1.2.9",
"description": "Javascript library for the Alpaca Trade API",
"main": "lib/alpaca-trade-api.js",
"scripts": {
"test": "mocha --timeout 4s test/init.js 'test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpacahq/alpaca-trade-api-js.git"
},
"keywords": [
"Alpaca",
"Trading"
],
"contributors": [
"Jenya Tkachenko <jekatka@outlook.com>",
"Aaron Suddjian <aaron@alpaca.markets>",
"Trevor Thackston <trevor@alpaca.markets>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alpacahq/alpaca-trade-api-js/issues"
},
"homepage": "https://alpaca.markets/",
"dependencies": {
"dotenv": "^6.0.0",
"lodash": "^4.17.11",
"nats": "^1.0.1",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"urljoin": "^0.1.5",
"ws": "^6.1.0"
},
"devDependencies": {
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"express": "^4.16.4",
"joi": "^14.0.6",
"mocha": "^5.2.0",
"sinon": "^6.2.0"
}
}