-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.23 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.23 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
51
52
53
54
55
56
57
58
59
{
"name": "fuzzy-tools",
"version": "2.0.1",
"author": {
"name": "Shelest Denis",
"email": "axules@gmail.com"
},
"bugs": {
"url": "https://github.com/axules/fuzzy-tools/issues"
},
"contributors": [
{
"name": "Denis Shelest",
"email": "axules@gmail.com"
}
],
"main": "./dist/index.js",
"deprecated": false,
"description": "Functions for fuzzy matching and items filtering",
"keywords": [
"fuzzy",
"search",
"fast",
"fuzzy-search",
"filter",
"match",
"fuse"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/axules/fuzzy-tools.git"
},
"scripts": {
"test": "jest",
"build": "npm test && babel -d dist ./src/**/**",
"prepack": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.20.0",
"@babel/preset-env": "^7.19.4",
"@babel/runtime-corejs3": "^7.20.1",
"babel-jest": "^29.2.2",
"babel-loader": "^9.1.0",
"core-js": "^3.26.0",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.2.2"
},
"files": [
"dist",
"src",
"tests",
"README.md"
]
}