-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.64 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
{
"name": "typesense-minibar",
"description": "Fast 2kB autocomplete search bar",
"version": "1.3.4",
"homepage": "https://github.com/jquery/typesense-minibar",
"license": "MIT",
"author": {
"name": "Timo Tijhof",
"url": "https://timotijhof.net"
},
"bugs": {
"url": "https://github.com/jquery/typesense-minibar/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/jquery/typesense-minibar.git"
},
"keywords": [
"autocomplete",
"typesense",
"docsearch",
"algolia",
"fast",
"dependency-free",
"typeahead",
"instantsearch",
"melisearch",
"search"
],
"files": [
"typesense-minibar.js",
"typesense-minibar.css",
"typesense-minibar-foot.css",
"LICENSE.txt"
],
"main": "typesense-minibar.js",
"devDependencies": {
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-qunit": "^4.1.2",
"qunit": "^2.20.0",
"semistandard": "^17.0.0"
},
"scripts": {
"lint": "eslint --cache .",
"lint-fix": "eslint --cache --fix .",
"test": "npm run test-browser && npm run lint",
"test-browser": "karma start",
"test-browser-watch": "karma start --auto-watch --no-single-run",
"size": "echo 'JS ' $(cat typesense-minibar.js | gzip -9 - | wc -c) && echo CSS $(cat typesense-minibar.css | gzip -9 - | wc -c)",
"serve-demo": "python3 -m http.server 4100"
},
"eslintIgnore": [
"/coverage",
"/node_modules"
],
"nyc": {
"include": [
"*.js"
],
"reporter": [
"text",
"html"
],
"report-dir": "coverage"
}
}