-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 743 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "algorithms",
"version": "1.0.0",
"description": "This project is designed for practicing algorithm resolution. It contains various algorithmic problems that you can solve to improve your problem-solving skills. Each problem has a description, input, and output format, and you can test your solution against provided test cases.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vmartinetti/algorithms.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vmartinetti/algorithms/issues"
},
"homepage": "https://github.com/vmartinetti/algorithms#readme",
"dependencies": {
"jest": "^29.6.2"
}
}