-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 873 Bytes
/
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
{
"name": "tdd-interview-js",
"version": "1.0.0",
"description": "a simple repository for gathering some state-of-the-art interview questions and tasks along with related tests",
"main": "index.js",
"scripts": {
"test": "jest",
"liveTest": "jest --watchAll",
"fullTest": "jest --coverage",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MamadTaheri68/TDD-Interview-JS.git"
},
"keywords": [],
"author": "Mohammad Taheri([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/MamadTaheri68/TDD-Interview-JS/issues"
},
"homepage": "https://github.com/MamadTaheri68/TDD-Interview-JS#readme",
"dependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1"
}
}