-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 940 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 940 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
34
35
36
37
38
{
"name": "daily-leetcode-coding",
"version": "1.0.0",
"description": "Data Structure, Algorithms and Leetcode Coding",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NAT1804/daily-leetcode-coding.git"
},
"keywords": [
"leetcode",
"data-structures",
"algorithms",
"javascript"
],
"author": "TuanNA184",
"license": "ISC",
"bugs": {
"url": "https://github.com/NAT1804/daily-leetcode-coding/issues"
},
"homepage": "https://github.com/NAT1804/daily-leetcode-coding#readme",
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"babel-jest": "^29.6.4",
"jest": "^29.6.4"
},
"dependencies": {
"@datastructures-js/priority-queue": "^6.3.1",
"@datastructures-js/queue": "^4.2.3",
"@types/node": "^20.12.7",
"lodash": "^4.17.21"
}
}