forked from fergiemcdowall/search-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.58 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
44
45
46
47
48
49
50
51
{
"name": "search-index",
"version": "1.0.5",
"description": "A network resilient, persistent full-text search library for the browser and Node.js",
"main": "dist/search-index.cjs.js",
"module": "dist/search-index.esm.js",
"directories": {
"lib": "lib"
},
"scripts": {
"empty-sandbox": "rm -rf test/sandbox && mkdir test/sandbox",
"lint": "standard --fix test/* src/*",
"test": "npm run empty-sandbox && npm run test-node && npm run test-browser && npm run lint",
"test-browser": "npm run empty-sandbox && webpack && cat test/sandbox/bundle.js | tape-run",
"test-node": "rollup -c && npm run empty-sandbox && tape test/cjs/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fergiemcdowall/search-index.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fergiemcdowall/search-index/issues"
},
"homepage": "https://github.com/fergiemcdowall/search-index#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^5.13.0",
"eslint-loader": "^2.1.2",
"level-out": "^1.0.0",
"memdown": "^3.0.0",
"rollup": "^1.1.2",
"standard": "^12.0.1",
"tape": "^4.9.1",
"tape-run": "^5.0.0",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.3",
"world-bank-dataset": "^1.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"fergies-inverted-index": "0.0.12",
"http-serve": "^1.0.1",
"term-vector": "^1.0.0",
"traverse": "^0.6.6"
}
}