-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
57 lines (57 loc) · 1.47 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
52
53
54
55
56
57
{
"name": "norch",
"version": "0.8.13",
"description": "A search engine based on Node.js and LevelDB",
"main": "./lib/norch",
"dependencies": {
"JSONStream": "^1.2.1",
"bunyan": "^1.8.4",
"byline": "^5.0.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"lodash": "^4.16.6",
"restify": "^4.2.0",
"search-index": "^0.11.0"
},
"devDependencies": {
"browser-run": "^3.3.0",
"browserify": "^13.1.1",
"left-pad": "^1.1.3",
"level-out": "0.0.7",
"levelout": "^1.0.0",
"request": "^2.69.0",
"reuters-21578-json": "^0.0.8",
"standard": "^8.5.0",
"stopword": "^0.1.1",
"tape": "^4.6.2",
"written-number": "^0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fergiemcdowall/norch.git"
},
"keywords": [
"elasticsearch",
"search",
"server",
"solr",
"free text",
"big data"
],
"bin": {
"norch": "./bin/norch"
},
"maintainers": [
"fergiemcdowall <[email protected]>"
],
"engines": {
"node": ">3"
},
"scripts": {
"test": "rm -rf test/sandbox && mkdir test/sandbox && date && tape test/*test.js && npm run test-cli && npm run test-browser && standard --fix",
"test-cli": "./bin/norch -p 9090 -i test/sandbox/norch-cli & sleep 5s && bats test/test.bats && kill $!",
"test-browser": "./bin/norch -i test/sandbox/browser-test -p 9999 & tape test/browser/runtest.js && kill $!",
"start": "./bin/norch"
},
"license": "MIT"
}