-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.61 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.61 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@logkat/broker-parser",
"version": "0.1.0",
"description": "A robust, standalone TypeScript library for parsing transaction CSV exports from various stock brokers.",
"keywords": [
"broker",
"parser",
"finance",
"stocks",
"csv",
"avanza",
"nordnet"
],
"engines": {
"node": ">=22"
},
"author": "Abhishek Jain <Abhi347@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/logkat/broker-parser.git"
},
"bugs": {
"url": "https://github.com/logkat/broker-parser/issues"
},
"homepage": "https://github.com/logkat/broker-parser#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"broker-parser": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"@types/papaparse": "^5.5.2",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.0.0",
"prettier": "^3.4.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "1.6.1"
},
"dependencies": {
"commander": "^14.0.2",
"papaparse": "^5.5.3",
"yahoo-finance2": "^3.11.2"
}
}