This repository has been archived by the owner on Aug 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "@bunq-community/bunq-cli",
"version": "0.4.0",
"license": "MIT",
"main": "./index.js",
"types": "./dist/BunqCLI.d.ts",
"bin": {
"bunq-cli": "bin/cli.js"
},
"files": [
"index.js",
"index.ts",
"bin/**/*",
"dist/**/*"
],
"scripts": {
"build": "tsc --listFiles --newline lf",
"build:dev": "tsc -w --newline lf",
"start": "ts-node ./index.ts",
"test": "npm run test:prettier",
"test:prettier": "prettier-check \"+(tests|bin|src)/**/**.+(js|ts)\" --tab-width 4 --print-width 120",
"prettier": "./node_modules/.bin/prettier --tab-width 4 --print-width 120 --write \"+(tests|bin|src)/**/**.+(js|ts)\"",
"preversion": "rm -r dist/* && npm run build"
},
"dependencies": {
"@bunq-community/bunq-js-client": "^0.41.2",
"awaiting": "^3.0.0",
"axios": "^0.19.0",
"chalk": "^2.4.1",
"dotenv": "^6.1.0",
"enquirer": "^2.1.1",
"json-store": "^1.0.0",
"prettier-check": "^2.0.0",
"qrcode-terminal": "^0.12.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/node": "^10.12.12",
"prettier": "^1.15.3",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bunqCommunity/bunq-cli.git"
},
"bugs": {
"url": "https://github.com/bunqCommunity/bunq-cli/issues"
},
"homepage": "https://github.com/bunqCommunity/bunq-cli#readme"
}