forked from Glench/fuzzyset.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 830 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
{
"name": "fuzzyset",
"description": "A fast fuzzy string set for JavaScript",
"version": "1.0.7",
"homepage": "http://Glench.github.com/fuzzyset.js",
"repository": "git://github.com/Glench/fuzzyset.js.git",
"author": "Glen Chiacchieri (http://glench.com/)",
"license": "see LICENSE.md",
"funding": {
"type": "License Zero",
"url": "https://licensezero.com/offers/562c0ffe-df98-4348-87b7-e60e3c37c534"
},
"main": "./dist/fuzzyset.common.js",
"module": "./dist/fuzzyset.esm.js",
"unpkg": "./dist/fuzzyset.js",
"jsdelivr": "./dist/fuzzyset.js",
"files": [
"dist"
],
"devDependencies": {
"rollup": "^2.34.2",
"should": "*"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"engines": {
"node": ">= 0.4.0"
}
}