-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 786 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
{
"name": "software-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saddamarbaa/software-testing.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saddamarbaa/software-testing/issues"
},
"homepage": "https://github.com/saddamarbaa/software-testing#readme",
"devDependencies": {
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3"
},
"dependencies": {
"axios": "^1.2.2"
}
}