-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 832 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 832 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
{
"name": "rbapi",
"version": "1.0.24",
"description": "A nodejs library for communicating with Robinhood's API",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha --timeout 15000 tests/**/*.js",
"start": "node ./src/main.js"
},
"main": "src/main.js",
"author": "Phong Vuong",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/pyriter/rbapi.git"
},
"bugs": {
"url": "https://github.com/pyriter/rbapi/issues"
},
"homepage": "https://github.com/pyriter/rbapi",
"dependencies": {
"axios": "0.19.0",
"https": "1.0.0",
"lodash": "^4.17.15",
"querystring": "0.2.0",
"request": "2.87.0"
},
"devDependencies": {
"chai": "4.1.2",
"mocha": "5.2.0",
"nyc": "^14.1.1",
"rimraf": "2.6.2",
"sinon": "^7.3.2"
}
}