-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 981 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 981 Bytes
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": "memoizedFuzzySearch",
"version": "0.0.1",
"description": "A minimal memoized fuzzy search javascript library",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jasmine",
"build": "./node_modules/.bin/babel . --ignore node_modules/,dist/ -d dist --preset es2016 --plugins=transform-es2015-modules-commonjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jolancornevin/memoizedFuzzySearch.git"
},
"keywords": [
"memoized",
"fuzzy",
"search"
],
"author": "jolancornevin",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jolancornevin/memoizedFuzzySearch/issues"
},
"homepage": "https://github.com/jolancornevin/memoizedFuzzySearch#readme",
"dependencies": {
"fuzzysort": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"benchmark": "^2.1.4",
"jasmine": "^2.8.0"
}
}