-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 845 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
37
38
39
40
41
42
43
{
"name": "ofx-js",
"description": "Parse OFX files using pure JavaScript.",
"version": "0.2.0",
"homepage": "https://github.com/bradenmacdonald/ofx-js",
"contributors": [
{
"name": "Braden MacDonald",
"url": "http://bradenmacdonald.com/"
},
{
"name": "Christian Sullivan",
"url": "http://euforic.co/"
},
{
"name": "Eric Webb",
"url": "https://webb.codes"
}
],
"devDependencies": {
"tape": "^4.6.3"
},
"dependencies": {
"xml2js": "^0.6.2"
},
"main": "./ofx.js",
"directories": {},
"repository": {
"type": "git",
"url": "git://github.com/bradenmacdonald/ofx-js.git"
},
"license": "MIT",
"keywords": [
"ofx",
"open financial exchange",
"bank",
"banking",
"export"
],
"scripts": {
"test": "tape test/*.js"
}
}