-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 839 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
31
32
33
34
35
36
37
38
39
{
"name": "data-structures",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"typecheck": "tsc",
"run": "node -r esbuild-register index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vforsh/data-structures.git"
},
"keywords": [
"algorithms",
"data",
"structures",
"computer",
"science"
],
"author": "Vladislav Forsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/vforsh/data-structures/issues"
},
"homepage": "https://github.com/vforsh/data-structures#readme",
"dependencies": {
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.2",
"esbuild": "^0.13.4",
"esbuild-jest": "^0.5.0",
"esbuild-register": "^3.0.0",
"jest": "^27.2.4",
"lodash": "^4.17.21",
"typescript": "^4.4.3"
}
}