forked from krisk/Fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 KB
/
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
41
{
"name": "fuse-immutable",
"author": "Chad Watson <chadwatsn@gmail.com>",
"version": "2.0.0",
"description": "Lightweight fuzzy-search for Immutable.js (Based on Fuse.js by krisk)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/chadwatson/fuse-immutable.git"
},
"dependencies": {
"immutable": "4.0.0-rc.9"
},
"keywords": [
"fuzzy",
"bitap",
"immutable"
],
"main": "dist/fuse-immutable.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"
},
"bugs": {
"url": "https://github.com/chadwatson/fuse-immutable/issues"
},
"homepage": "https://github.com/chadwatson/fuse-immutable#readme",
"directories": {
"test": "test"
}
}