-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 735 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 735 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
{
"name": "binary-algorithm-search",
"version": "3.2.0",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"build": "tsc"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"keywords": [
"binary",
"search",
"tim sort",
"algorithm"
],
"license": "ISC",
"author": "Davy de Souza Assunção",
"description": "Binary search algorithm",
"repository": {
"url": "https://github.com/davysz/binary-algorithm-search/tree/master",
"type": "git"
}
}