-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"name": "binary-search",
"version": "1.0.0",
"description": "A simple typescript binary search algorithm implementation!",
"keywords": [
"binary-search"
],
"main": "main.ts",
"scripts": {
"build": "tsc",
"start": "ts-node-dev --clear --quiet --inspect --transpile-only --ignore-watch node_modules src/main.ts",
"test": "jest --coverage --watchAll=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlvaroIsrael/binary-search.git"
},
"bugs": {
"url": "https://github.com/AlvaroIsrael/binary-search/issues"
},
"homepage": "https://github.com/AlvaroIsrael/binary-search#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.15",
"@types/readline-sync": "^1.4.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.12.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"debug": "^4.3.1",
"readline-sync": "^1.4.10",
"uuid": "^8.3.2"
}
}