-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "investec-card-cli",
"version": "1.1.0",
"main": "bin/index.js",
"bin": {
"card-emu": "./bin/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"check-format": "prettier --check .",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run test",
"dev": "vitest",
"format": "prettier --write ."
},
"keywords": [
"investec",
"card",
"emulator",
"programmable banking",
"open banking",
"banking"
],
"author": "Devin Pearson",
"license": "MIT",
"description": "An emulator for the Programmable Card Code Lamda function",
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"programmable-card-code-emulator": "^1.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@types/yargs": "^17.0.33",
"prettier": "3.0.3",
"vitest": "^2.1.8"
},
"files": [
"bin"
]
}