-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 793 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 793 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
{
"name": "data-structure-practices",
"version": "1.0.0",
"description": "Here is the repo contains the algorithm and data structure practices scripts I used for preparing my tech interview.",
"directories": {
"test": "tests"
},
"dependencies": {
"jest": "^27.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruqianq/data-structure-practices.git"
},
"author": "Daisy Lin",
"license": "ISC",
"bugs": {
"url": "https://github.com/ruqianq/data-structure-practices/issues"
},
"homepage": "https://github.com/ruqianq/data-structure-practices#readme"
}