-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 929 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 929 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
33
34
35
36
37
38
39
40
{
"name": "bog-cli",
"version": "1.0.0",
"description": "CLI tool for Bank of Georgia",
"main": "./lib/index.js",
"scripts": {
"prettify": "git diff --name-only HEAD | grep \".*\\.js$\" | xargs prettier --single-quote --no-semi --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunjick/bog-cli.git"
},
"keywords": [
"bog",
"cli",
"bankofgeorgia"
],
"author": "Mirza Brunjadze",
"license": "ISC",
"bin": {
"bog": "./bin/bog"
},
"bugs": {
"url": "https://github.com/brunjick/bog-cli/issues"
},
"homepage": "https://github.com/brunjick/bog-cli#readme",
"devDependencies": {
"prettier": "^1.4.4"
},
"dependencies": {
"axios": "^0.16.2",
"cli-pen": "^0.1.12-2",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^2.9.0",
"crypto-js": "^3.1.9-1",
"inquirer": "^3.1.0",
"querystring": "^0.2.0"
}
}