forked from krisk/Fuse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 913 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
{
"name": "fuse.js",
"author": {
"name": "Kirollos Risk",
"email": "[email protected]",
"url": "http://kiro.me"
},
"version": "3.3.0",
"description": "Lightweight fuzzy-search",
"license": "Apache-2.0",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/krisk/Fuse.git"
},
"homepage": "http://fusejs.io",
"dependencies": {},
"keywords": [
"fuzzy",
"bitap"
],
"main": "dist/fuse.js",
"scripts": {
"test": "vows test/**.js",
"build": "WEBPACK_ENV=build webpack && WEBPACK_ENV=dev webpack",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"vows": "0.5.x",
"webpack": "^2.4.1"
}
}