-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 897 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
30
{
"name": "algorithms-datastructures-javascript",
"version": "1.0.0",
"description": "A repository where I will document on different solutions to algorithms and data structure problems.",
"main": "index.js",
"scripts": {
"test": "cd exercises && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArmandoHerra/algorithms-datastructures-javascript.git"
},
"keywords": [
"JavaScript",
"Algorithms",
"Data",
"Structures",
"js"
],
"author": "Armando Herra",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArmandoHerra/algorithms-datastructures-javascript/issues"
},
"homepage": "https://github.com/ArmandoHerra/algorithms-datastructures-javascript#readme",
"dependencies": {},
"devDependencies": {
"jest": "^26.6.3"
}
}