-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "string-hunt",
"version": "1.1.0",
"description": "Full Text Search Algorithm",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/regisrex/string-hunt.git"
},
"bugs": {
"url": "https://github.com/regisrex/string-hunt/issues"
},
"keywords": [
"searching",
"json-search",
"fast search"
],
"author": "Murangwa Pacifique && Ndizihiwe Regis",
"scripts": {
"build": "vitest --no-watch && tsc",
"test": "vitest --no-watch",
"test:dev": "vitest --watch",
"test:coverage": "vitest run --coverage",
"prepare": "husky install",
"lint": "eslint . --ext .ts --fix",
"prepack": "tsc",
"prepublish": "npm run build"
},
"license": "MIT",
"private": false,
"dependencies": {
"valdie": "^0.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^0.34.4",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
}
}