forked from euforic/banking.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 722 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 722 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
31
32
{
"name": "banking",
"description": "The missing Bank API for getting you statement data",
"version": "1.2.0",
"author": "Christian Sullivan <cs@euforic.co>",
"keywords": [
"banking",
"ofx",
"financial",
"bank",
"quickbooks"
],
"private": false,
"homepage": "http://euforic.github.com/banking.js",
"dependencies": {
"debug": "^2.3.3",
"xml2js": "^0.4.17"
},
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.1.1"
},
"repository": {
"type": "git",
"url": "http://github.com/euforic/banking.js.git"
},
"main": "lib/banking.js",
"scripts": {
"prepublish": "npm prune",
"test": "mocha --require should --reporter spec --globals i"
}
}