-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
69 lines (69 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "node-cba-netbank",
"version": "0.8.2",
"description": "Unofficial Commonwealth Bank Australia Netbank API Wrapper for Node.js",
"author": "Tao Wang <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/twang2218/node-cba-netbank",
"bugs": "https://github.com/twang2218/node-cba-netbank/issues",
"main": "dist/api.js",
"bin": {
"cba-netbank": "dist/cli.js"
},
"directories": {
"lib": "./dist"
},
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.2",
"cheerio": "^0.22.0",
"debug": "^3.1.0",
"easy-table": "^1.1.1",
"inquirer": "^5.1.0",
"lodash": "^4.17.5",
"moment-timezone": "^0.5.14",
"mz": "^2.7.0",
"ofx": "^0.4.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"nock": "^9.2.3",
"strip-ansi": "^4.0.0"
},
"scripts": {
"start": "node dist/cli.js",
"start-debug": "DEBUG=node-cba-netbank yarn start",
"build": "babel src -d dist",
"eslint": "eslint src test",
"prepare": "yarn build",
"pretest": "yarn build && yarn eslint",
"test": "jest --coverage --verbose",
"test-debug": "DEBUG=node-cba-netbank yarn test -- --runInBand",
"test-coveralls": "yarn test-debug && yarn coveralls",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf ./log/* ./coverage ./dist"
},
"repository": "twang2218/node-cba-netbank",
"keywords": [
"api",
"bank",
"financial",
"netbank",
"cba",
"commonwealth bank australia"
]
}