-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 870 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
34
35
36
{
"name": "tactician",
"version": "0.3.0",
"description": "Lightweight trading indicators designed for technical analysts' use",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/bartdominiak/tactician.git"
},
"keywords": [
"trading-indicators",
"indicators",
"technical-analyst",
"rsi",
"relative-strength-index"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartdominiak/tactician/issues"
},
"homepage": "https://github.com/bartdominiak/tactician#README",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"csv-parse": "^5.5.6"
},
"dependencies": {}
}