-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 KB
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
{
"name": "e-trade-api",
"version": "0.3.0",
"description": "A promise, JSON-based library for interacting with the E-Trade API.",
"keywords": [
"ETrade",
"etrade",
"E-Trade",
"e-trade",
"api"
],
"homepage": "https://github.com/tflanagan/node-e-trade",
"bugs": {
"url": "https://github.com/tflanagan/node-e-trade/issues",
"email": "contact@tristianflanagan.com"
},
"license": "Apache-2.0",
"author": {
"name": "Tristian Flanagan",
"url": "https://github.com/tflanagan",
"email": "contact@tristianflanagan.com"
},
"maintainers": [],
"contributors": [],
"main": "./dist/e-trade-api.js",
"types": "./dist/e-trade-api.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/tflanagan/node-e-trade.git"
},
"scripts": {
"build": "node build.js",
"cleanup": "rm -rf ./dist/*",
"reinstall": "rm -rf node_modules/ && npm install",
"reinstall-dev": "rm -rf node_modules/ && npm install && npm install --dev"
},
"dependencies": {
"axios": "^1.6.7",
"debug": "^4.3.4",
"deepmerge": "^4.3.1",
"generic-throttle": "^3.1.0",
"oauth-1.0a": "^2.2.6"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^20.11.16",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=10.14.2"
},
"git": "git://github.com/tflanagan/node-e-trade.git"
}