-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 900 Bytes
/
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
{
"name": "robinhood-api-node",
"version": "0.0.1",
"description": "API wrapper for Robinhood",
"main": "index.js",
"author": "Neal Patel",
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
},
"dependencies": {
"bluebird": "^3.3.5",
"lodash": "^4.11.1",
"request": "^2.71.0"
},
"devDependencies": {
"coveralls": "^2.11.14",
"eslint": "^3.8.0",
"eslint-config-google": "^0.6.0",
"istanbul": "^0.4.3",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"nock": "^8.0.0",
"should": "^11.1.1"
}
}