-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.29 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ofx-data-extractor",
"version": "1.5.0",
"keywords": [
"ofx",
"financial",
"ofx-js",
"ofx-ts",
"ofx to json",
"export ofx",
"ofx json",
"ofx manipulation",
"banking",
"parser",
"data-extraction",
"extract ofx",
"typescript",
"utility",
"ofx-file",
"data-formatting",
"ofx node",
"ofx js",
"ofx ts",
"ofx extractor",
"ofx browser",
"open financial exchange"
],
"author": "Fábio Pereira França",
"repository": {
"type": "git",
"url": "https://github.com/Fabiopf02/ofx-data-extractor.git"
},
"bugs": {
"url": "https://github.com/Fabiopf02/ofx-data-extractor/issues"
},
"license": "MIT",
"sideEffects": false,
"description": "A module written in TypeScript that provides a utility to extract data from an OFX file in Node.js and Browser",
"main": "dist/umd/bundle.min.js",
"module": "dist/esm/index.min.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.min.js",
"require": "./dist/umd/bundle.min.js",
"default": "./dist/esm/index.min.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest tests/*.spec.ts --config jest.config.js",
"test:coverage": "jest tests/*.spec.ts --coverage --config jest.config.js",
"build": "rollup --config",
"build:analyze": "npm run build && node -e \"const fs=require('fs');const z=require('zlib');const files=['dist/esm/index.min.js','dist/umd/bundle.min.js'];for(const f of files){const b=fs.readFileSync(f);const gz=z.gzipSync(b);console.log(f, 'raw='+b.length+'B', 'gzip='+gz.length+'B');}\"",
"start": "node dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"prepublish": "npm run build",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.130",
"esbuild": "^0.28.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"rollup": "^3.30.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.4.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
}
}