-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.07 KB
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
{
"name": "starling-cli",
"version": "2.1.0",
"description": "A CLI tool for querying your Starling Bank account",
"type": "module",
"main": "src/main.js",
"bin": {
"starling": "bin/starling.js"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"src/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samalexander/starling-cli.git"
},
"keywords": [
"starling",
"cli",
"terminal"
],
"author": "Sam Alexander",
"license": "MIT",
"dependencies": {
"accounting": "^0.4.1",
"axios": "^0.21.1",
"boxen": "^5.0.1",
"chalk": "^4.1.1",
"columnify": "^1.5.4",
"commander": "^7.2.0",
"configstore": "^6.0.0",
"esm": "^3.2.25",
"inquirer": "^8.1.0",
"open": "^8.2.0",
"ora": "^5.4.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"standard-version": "^9.3.0"
}
}