-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 929 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
30
31
32
33
{
"name": "alpha-vantage-bot",
"version": "1.0.0",
"description": "Collects daily market data on major stocks",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/entry.js",
"develop": "nodemon src/entry.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BananiumLabs/alpha-vantage-bot.git"
},
"author": "Bananium Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/BananiumLabs/alpha-vantage-bot/issues"
},
"homepage": "https://github.com/BananiumLabs/alpha-vantage-bot#readme",
"dependencies": {
"alphavantage": "^1.1.1",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"nodemon": "^1.18.4",
"prompt": "^1.0.0",
"rimraf": "^2.6.2"
}
}