-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.14 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
{
"name": "bank-tech-test",
"version": "1.0.0",
"description": "For a practice tech test, I have been tasked to create a Bank system that allows people to deposit money, withdraw money and print their bank statement.\\ \\ The program will be ran in Node but will not need to have a Command Line Interface. The focus of the project is to practice OO design and TDD skills and the project will be completed solo with self-reviews done to reflect and improve upon my own code.",
"main": "index.js",
"scripts": {
"test": "npx jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcsuGH/Bank-Tech-Test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcsuGH/Bank-Tech-Test/issues"
},
"homepage": "https://github.com/mcsuGH/Bank-Tech-Test#readme",
"dependencies": {
"jest": "^28.1.0",
"moment": "^2.29.3"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"mockdate": "^3.0.5"
}
}