-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 927 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 927 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
39
40
41
{
"name": "typescriptds",
"version": "1.0.0",
"description": "Data Structures in TypeScript",
"author": "Madhur Ahuja",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"contributors": [
{
"name": "Madhur Ahuja",
"email": "madhurahuja@outlook.com",
"url": "https://www.madhurahuja.com"
},
{
"name": "Rajdeep Ratan",
"email": "rajdeepratan@hotmail.com",
"url": "https://github.com/rajdeepratan"
}
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.19.15",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"scripts": {
"build": "npx tsc",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"docs": "compodoc -p tsconfig.doc.json -a assets"
},
"dependencies": {
"uuid": "^11.1.0"
}
}