-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ts-data-structures-and-algorithms",
"version": "0.0.0-semantic-release",
"description": "Popular Data Structures and Algorithms done in TypeScript",
"main": "index.js",
"author": "Joseph Akhenda",
"license": "MIT",
"homepage": "https://github.com/akhenda/ts-data-structures-and-algorithms#readme",
"bugs": {
"url": "https://github.com/akhenda/ts-data-structures-and-algorithms/issues"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akhenda/ts-data-structures-and-algorithms.git"
},
"keywords": [
"data-structures",
"algorithms",
"data-structures-and-algorithms",
"TypeScript"
],
"scripts": {
"gc": "git add . && cz",
"gc-ai": "git add . && bunx czg ai -N=5",
"lint": "eslint src --ext .ts",
"preinstall": "npx only-allow pnpm",
"test:watch": "jest --runInBand --detectOpenHandles --watchAll",
"test": "jest",
"test:ci": "jest --ci"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@hendacorp/eslint-plugin": "1.0.5",
"@hendacorp/typescript-configs": "1.0.5",
"@jest/globals": "29.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@shopify/eslint-plugin": "45.0.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitizen": "4.3.1",
"eslint": "8.57.1",
"eslint-import-resolver-typescript": "3.7.0",
"git-cz": "4.9.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
}
}