-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
40 lines (40 loc) · 1015 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
36
37
38
39
40
{
"name": "fuzzy-search",
"version": "3.2.1",
"description": "Simple fuzzy search",
"main": "./dist/FuzzySearch.js",
"module": "src/FuzzySearch.mjs",
"devDependencies": {
"@babel/register": "^7.6.2",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"jasmine": "^4.0.2",
"laravel-mix": "^6.0.43",
"vue-template-compiler": "^2.6.11"
},
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"prod": "npm run production",
"production": "mix --production",
"test": "jasmine",
"lint": "eslint src --ext js,mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wouter2203/fuzzy-search.git"
},
"keywords": [
"fuzzy",
"search",
"javascript"
],
"author": "Wouter Rutgers",
"license": "ISC",
"bugs": {
"url": "https://github.com/wouter2203/fuzzy-search/issues"
},
"homepage": "https://github.com/wouter2203/fuzzy-search#readme",
"tonicExampleFilename": "example.js"
}