forked from larsvoigt/epub-full-text-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "epub-full-text-search",
"version": "0.2.9",
"description": "Sample Application",
"keywords": [
"epub3",
"Node.js",
"application",
"epub",
"full text search",
"search"
],
"author": {
"name": "Lars Voigt",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/larsvoigt/epub-full-text-search"
},
"engines": {
"node": ">=6",
"npm": ">= 2.11.3"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"brfs": "~1.4.0",
"browserify": "~10.2.4",
"browserify-fs": "~1.0.0",
"mocha": "~2.2.5",
"rimraf": "~2.4.0",
"should": "~7.0.1"
},
"dependencies": {
"async": "~0.9.0",
"body-parser": "~1.12.2",
"brfs": "^1.4.3",
"cheerio": "~0.19.0",
"chokidar": "^1.0.6",
"colors": "^1.1.2",
"commander": "^2.9.0",
"cors": "^2.7.1",
"daemon": "^1.1.0",
"epub3-samples": "0.0.1",
"express": "~4.12.3",
"extfs": "~0.0.7",
"forever": "^0.15.3",
"lodash": "~3.10.1",
"logrotate-stream": "^0.2.5",
"lowdb": "^0.12.5",
"minimist": "^1.2.0",
"os-homedir": "^1.0.2",
"q": "^1.4.1",
"readdirp": "^2.0.0",
"search-index": "~0.8.10",
"string": "^3.3.3",
"xml2js": "~0.4.8"
},
"bin": {
"epub-search": "./bin/epub-search"
},
"scripts": {
"start": "npm run express-service",
"build": "babel src -d dist --copy-files",
"only-client": "node_modules/browserify/bin/cmd.js -t brfs example/only-client-side/main.js > example/only-client-side/bundle.js",
"express-service": "node example/as-a-service/express/service.js",
"test": "date && mocha --compilers js:babel-core/register tests --recursive",
"postinstall": "npm run build"
},
"main": "dist/SearchEngine.js"
}