-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "alphavantage",
"version": "2.5.0",
"description": "A simple interface to the Alpha Vantage API.",
"main": "dist/bundle.js",
"scripts": {
"test": "jest",
"lint": "prettier --write \"./!(dist)**/**.js\"",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rollup -c rollup.config.mjs"
},
"keywords": [
"alpha vantage",
"vantage",
"alpha",
"alphavantage",
"stocks",
"stock market",
"api"
],
"author": "Zack Urben <[email protected]> (http://zackurben.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zackurben/alphavantage"
},
"homepage": "https://github.com/zackurben/alphavantage",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"babel-jest": "^29.7.0",
"coveralls": "^3.1.1",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rollup": "^4.1.4"
},
"jest": {
"collectCoverage": true,
"bail": false,
"verbose": true,
"testEnvironment": "node",
"setupFiles": [
"dotenv/config"
]
}
}