-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 748 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 748 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
{
"name": "algorithms-documentation",
"version": "1.0.0",
"description": "project dedicated to algorithms and exercises",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codesandtags/algorithms-documentation.git"
},
"keywords": [
"algorithms",
"interview",
"faang"
],
"author": "codesandtags",
"license": "ISC",
"bugs": {
"url": "https://github.com/codesandtags/algorithms-documentation/issues"
},
"homepage": "https://github.com/codesandtags/algorithms-documentation#readme",
"devDependencies": {
"jest": "^29.6.2",
"prettier": "^3.0.2"
}
}