forked from fergiemcdowall/search-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "search-index",
"description": "A persistent full text search engine for the browser and Node.js",
"version": "0.13.0",
"homepage": "https://github.com/fergiemcdowall/search-index",
"engines": {
"node": ">=4"
},
"license": "MIT",
"dependencies": {
"levelup": "^1.3.8",
"search-index-adder": "kokeksibir/search-index-adder",
"search-index-searcher": "kokeksibir/search-index-searcher"
},
"devDependencies": {
"JSONStream": "^1.1.4",
"brfs": "^1.4.3",
"browser-run": "^4.0.3",
"browserify": "^13.1.0",
"commitizen": "^2.9.6",
"conventional-github-releaser": "^1.1.11",
"cz-conventional-changelog": "^2.0.0",
"disc": "^1.3.2",
"highland": "^2.10.0",
"http-server": "^0.9.0",
"left-pad": "^1.1.3",
"level-js": "^2.2.4",
"level-out": "0.0.7",
"mocha": "^3.2.0",
"request": "^2.78.0",
"reuters-21578-json": "0.0.8",
"should": "^10.0.0",
"sqldown": "^2.1.0",
"sqlite3": "^3.1.4",
"standard": "8.1.0",
"standard-changelog": "^1.0.1",
"stopword": "^0.1.1",
"tape": "^4.6.0",
"term-vector": "0.1.2",
"uglifyjs": "^2.4.10",
"written-number": "^0.5.0"
},
"optionalDependencies": {
"leveldown": "^1.7.0"
},
"author": {
"email": "[email protected]",
"name": "Fergus McDowall"
},
"keywords": [
"index",
"language",
"lucene",
"natural",
"offline",
"search"
],
"main": "lib/index.js",
"browser": {
"leveldown": "level-js"
},
"maintainers": [
{
"name": "Fergus McDowall",
"email": "[email protected]",
"url": "https://github.com/fergiemcdowall"
}
],
"scripts": {
"anylize-web-bundle": "browserify --full-paths lib/index.js --standalone SearchIndex > dist/search-index-full-paths.js && discify dist/search-index-full-paths.js > dist/out.html",
"changelog": "node -e \"require('standard-changelog')().pipe(process.stdout)\"",
"changelog-full": "standard-changelog --first-release",
"commit": "git-cz",
"demo-server": "http-server && echo 'demo is running at /doc/demo/'",
"dist": "browserify lib/index.js --standalone SearchIndex > dist/search-index.js",
"dist-min": "npm run dist && cat dist/search-index.js | uglifyjs -c dead_code > dist/search-index.min.js && cp dist/search-index.min.js docs/demo/",
"empty-sandbox": "rm -rf test/sandbox && mkdir test/sandbox",
"github-release": "conventional-github-releaser -p angular",
"print-version-from-package-json": "node -e \"process.stdout.write(require('./package.json').version)\"",
"tag-release": "npm run -s changelog | git tag -a v$(npm run -s print-version-from-package-json) --file - --cleanup=verbatim",
"test": "npm run empty-sandbox && date && npm run test-node && npm run test-browser && standard test/* lib/*",
"test-browser": "node test/browser/runtest.js",
"test-node": "tape test/node/tape-tests/*.js && mocha test/node/mocha-tests --recursive --timeout 10000",
"test-with-local-deps": "npm install && npm install ../search-index-adder ../search-index-searcher && npm test"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/fergiemcdowall/search-index.git"
}
}