-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "i4k-find",
"version": "1.4.3",
"description": "URL action engine",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "serve -p 8000 || python3 -m http.server --directory .",
"test": "ava",
"opensearch": "node ./src/scripts/opensearch-xml.js ?generate=true",
"find": "node ./src/scripts/i4k-find.js"
},
"bin": {
"i4k-find": "./src/scripts/i4k-find.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internet4000/find.git"
},
"author": "internet4000 and contributors",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/internet4000/find/issues"
},
"homepage": "https://github.com/internet4000/find#readme",
"devDependencies": {
"ava": "^5.3.1",
"serve": "^14.2.0"
},
"ava": {
"files": [
"src/tests/**/*"
]
},
"i4k-find": {
"localStorageKey": "i4find",
"queryParamName": "q",
"shortName": "Find",
"description": "Find search",
"image": "https://internet4000.github.io/find/assets/favicon.ico",
"templateHTML": "https://internet4000.github.io/find/#q={searchTerms}",
"templateXML": "https://internet4000.github.io/find/assets/opensearch.xml",
"templateSuggestions": "https://internet4000.github.io/find/api/suggestions/#q={searchTerms}"
}
}