-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 851 Bytes
/
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
{
"name": "matchfuzzy",
"version": "0.0.4",
"description": "Match your query fuzzy on given target",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:travis": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidsdo/matchFuzzy.git"
},
"keywords": [
"match",
"fuzzy",
"search"
],
"author": "guidojo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guidsdo/matchFuzzy/issues"
},
"homepage": "https://github.com/guidsdo/matchFuzzy#readme",
"devDependencies": {
"@types/jest": "29.5.2",
"coveralls": "3.1.1",
"jest": "29.5.0",
"prettier": "2.8.8",
"ts-jest": "^29.1.0",
"typescript": "5.1.3"
}
}