forked from chilts/node-ofx
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "node-ofx-parser",
"description": "Parse OFX files into a usable data structure.",
"version": "0.5.0",
"author": {
"name": "Lucas Bremm",
"email": "[email protected]"
},
"homepage": "https://github.com/LucasBremm/node-ofx",
"contributors": [
{
"name": "Andrew Chilton",
"email": "[email protected]",
"url": "https://chilts.org/"
},
{
"name": "Christian Sullivan",
"url": "http://euforic.co/"
},
{
"name": "Eric Webb",
"url": "https://webb.codes"
},
{
"name": "Francisco Felipe de Lima",
"url": "https://github.com/Felipedelima123"
}
],
"devDependencies": {
"tape": "^4.6.3"
},
"dependencies": {
"fast-xml-parser": "^3.18.0"
},
"main": "./ofx.js",
"directories": {},
"engines": {
"node": ">= 0.6.0"
},
"repository": {
"type": "git",
"url": "git://github.com/LucasBremm/node-ofx.git"
},
"bugs": {
"url": "http://github.com/LucasBremm/node-ofx/issues"
},
"license": "MIT",
"keywords": [
"ofx",
"open financial exchange",
"bank",
"banking",
"export"
],
"scripts": {
"test": "tape test/*.js"
}
}