-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 828 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 828 Bytes
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
{
"name": "@roublez/statement-parser",
"version": "2.1.0",
"description": "Statement file parser for roublez accounts and portfolios",
"main": "dist/parser.js",
"types": "types/parser.d.ts",
"files": [
"dist/parser.js",
"types/**/*.d.ts"
],
"scripts": {
"start": "node example.js",
"dev": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"prod": "webpack --mode=production"
},
"author": "Dennis Prudlo",
"license": "MIT",
"devDependencies": {
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"csv-parse": "^5.0.4",
"pdfjs-dist": "2.10.377",
"worker-loader": "^3.0.8"
}
}