-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 935 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
{
"name": "ebank-cli",
"version": "1.0.0",
"description": "Extensible online banking command line interface",
"main": "index.js",
"bin": {
"ebank": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Demian Rodriguez <[email protected]>",
"license": "MIT",
"dependencies": {
"chrome-remote-interface": "^0.23.2",
"dotenv": "^4.0.0",
"lighthouse": "^2.1.0",
"table": "^4.0.1",
"yargs": "^8.0.1"
},
"devDependencies": {
"eslint": "^3.19.0"
},
"engines": {
"node": ">=7.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demian85/ebank-cli.git"
},
"keywords": [
"online",
"banking",
"cli",
"extensible"
],
"bugs": {
"url": "https://github.com/demian85/ebank-cli/issues"
},
"homepage": "https://github.com/demian85/ebank-cli#readme"
}