-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "mvw-search-index",
"version": "2.3.0",
"description": "Module to generate the search index using lunr.",
"keywords": [
"website",
"search",
"index",
"lunr",
"static",
"hugo",
"jekyll",
"gatsby"
],
"license": "MIT",
"author": {
"name": "tiliavir",
"email": "tiliavir@gmail.com"
},
"bin": {
"mvw-search-index": "js/cli.js"
},
"main": "js/index.js",
"types": "js/index.d.ts",
"devDependencies": {
"@types/cheerio": "0.22.35",
"@types/jasmine": "5.1.4",
"@types/lunr": "2.3.7",
"@types/node": "22.4.0",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"jasmine": "5.2.0",
"eslint": "9.9.0",
"typescript": "5.5.4",
"serve": "^14.2.3",
"npm-check-updates": "^17.0.6"
},
"dependencies": {
"cheerio": "~1.0.0",
"commander": "~12.1.0",
"glob": "~11.0.0",
"lunr": "~2.3.9"
},
"scripts": {
"build": "tsc -p ./ts",
"test": "npx eslint . && npm run build && tsc -p ./spec && jasmine",
"preserve": "cd demo && node ../js/cli.js './**/*.html' index.json 'body.to-be-indexed'",
"serve": "serve ./demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiliavir/mvw-search-index.git"
},
"bugs": {
"url": "https://github.com/tiliavir/mvw-search-index/issues"
},
"homepage": "https://github.com/tiliavir/mvw-search-index#readme"
}