-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "gpw-tweets",
"version": "1.17.0",
"description": "GPW Tweets is a scanner of GPW (Warsaw Stock Exchange) securities. Every day checks each company quotations, searching for volume increase and candlestick pattern matches. Scan results are published on Twitter.",
"prepare": "npm run build",
"main": "build/gpw-tweets.js",
"types": "build/gpw-tweets.d.ts",
"scripts": {
"build": "tsc",
"start": "node build/gpw-tweets.js",
"test": "mocha -r ts-node/register test/**/*.test.ts"
},
"keywords": [
"stock",
"gpw",
"tweets",
"twitter"
],
"author": "Paweł Knioła",
"license": "MIT",
"dependencies": {
"args-parser": "^1.3.0",
"canvas": "^2.11.2",
"mathjs": "^10.6.4",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"twitter-api-v2": "^1.19.0",
"yahoo-finance2": "^2.13.3"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/unzipper": "^0.10.10",
"mocha": "^10.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}