-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
42
43
{
"name": "dexie-fulltextsearch",
"version": "1.0.0",
"description": "Full text search for IndexedDB databases, powered by Dexie.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bignerdranch/dexie-fulltextsearch.git"
},
"keywords": [
"javascript",
"dexie",
"indexeddb",
"database",
"browser",
"full-text-search",
"search",
"plugin"
],
"author": "Jonathan Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/bignerdranch/dexie-fulltextsearch/issues"
},
"homepage": "https://github.com/bignerdranch/dexie-fulltextsearch#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"eslint": "^3.19.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1"
},
"dependencies": {
"lunr": "^2.0.3",
"underscore.string": "^3.3.4"
}
}