-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "gpw-tweets",
"version": "1.15.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",
"etl": "^0.7.0",
"mathjs": "^10.6.4",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"twitter-api-v2": "^1.15.1",
"unzipper": "^0.10.14"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/unzipper": "^0.10.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}