-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "datastructure-ts",
"version": "0.1.22",
"description": "Collection of data structures(LinkedList, DoubleLinkedList, Stack, Queue, Dictionary and etc...) for TypeScript.",
"scripts": {
"build": "tsc",
"test": "mocha dist/tests/**/*.spec.js --reporter spec",
"test_watch": "tsc && mocha dist/tests/**/*.spec.js --reporter spec --watch",
"cover": "nyc npm test",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Slashmsu/TSDataStructure.git"
},
"keywords": [
"DataStructure",
"TypeScript",
"Dictionary",
"List",
"Stack",
"Queue",
"BinaryTree"
],
"author": "Bakhtier Gaibulloev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Slashmsu/TSDataStructure/issues"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage",
"**/*.d.ts",
"**/*.spec.ts"
],
"reporter": [
"text"
],
"all": true
},
"homepage": "https://github.com/Slashmsu/TSDataStructure#readme",
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/lodash": "^4.17.17",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"chai": "^4.5.0",
"eslint": "^8.56.0",
"lodash": "^4.17.21",
"mocha": "^11.5.0",
"nodemon": "^3.1.10",
"nyc": "^17.1.0",
"typescript": "^5.8.3"
}
}