-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "@ragnarpa/alphavantage",
"version": "0.1.4",
"description": "Alpha Vantage API client side throttling for Free plan.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"av": "dist/cli/index.js"
},
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"prepare": "tsc",
"build": "tsc",
"prepublishOnly": "tsc"
},
"author": "Ragnar Paide",
"license": "MIT",
"homepage": "https://github.com/ragnarpa/alphavantage",
"bugs": "https://github.com/ragnarpa/alphavantage/issues",
"engines": {
"node": ">=10.22"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.21",
"@types/sinon": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"proxyrequire": "^1.0.21",
"should": "^13.2.3",
"sinon": "^9.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/async-lock": "^1.1.2",
"@types/redlock": "^4.0.1",
"alphavantage": "^2.2.0",
"async-lock": "^1.2.4",
"commander": "^5.1.0",
"dotenv": "^8.2.0",
"moment": "^2.29.0",
"redlock": "^4.1.0"
}
}