-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "marcal",
"version": "0.5.0",
"description": "Exchanges Calendar for Trading Applications",
"author": "Artiom Baloian <artiom.baloian@gmail.com>",
"license": "MIT",
"main": "dist/marcal.js",
"types": "dist/marcal.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"prepare": "npm run build",
"start": "NODE_ENV=${NODE_ENV-production} node dist/marcal.js",
"dev": "tsc && NODE_ENV=${NODE_ENV-development} node dist/example.js",
"test": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/baloian/marcal.git"
},
"dependencies": {
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"keywords": [
"stock",
"stock-market",
"market-calendar",
"trading",
"algo-trading",
"trading-applications"
]
}