-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"name": "node-tda",
"version": "1.0.0",
"description": "Library for accessing TDA Web API",
"main": "lib/index.js",
"bin": {
"tda_authenticate": "cli/authenticate.js"
},
"scripts": {
"coverage": "nyc npm run test",
"certs": "openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem -config req.cnf -sha256",
"lint": "eslint --fix .",
"test": "mocha --recursive test",
"postinstall": "helpers/certs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mafischer/node-tda.git"
},
"author": "Michael Fischer",
"keywords": [
"stock",
"nyse",
"nasdaq",
"tda",
"tdameritrade",
"td",
"trade",
"api",
"async",
"promise",
"callback"
],
"license": "ISC",
"dependencies": {
"@hapi/hapi": "^20.1.0",
"axios": "^0.21.1",
"joi": "^17.4.0",
"open": "^7.4.2",
"qs": "^6.9.6",
"readline-promise": "^1.0.5",
"shelljs": "^0.8.4",
"ws": "^7.4.4",
"yargs": "^16.2.0"
},
"devDependencies": {
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4"
},
"optionalDependencies": {
"puppeteer": "^8.0.0"
}
}