-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 893 Bytes
/
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
{
"name": "hit-highlighter",
"version": "4.0.1",
"description": "Small and simple hit highlighter for search engines running in the browser and Node.js",
"main": "./dist/hit-highlighter.cjs.js",
"module": "./dist/hit-highlighter.esm.mjs",
"browser": "./dist/hit-highlighter.umd.js",
"scripts": {
"build": "rollup --config",
"test": "standard './*.js' && npm run build && npx ava ./test/test.cjs.js && ava ./test/test.esm.mjs && npx ava ./test/ui-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eklem/hit-highlighter.git"
},
"keywords": [
"search",
"JavaScript",
"browser"
],
"devDependencies": {
"batr": "^2.1.10"
},
"author": "Espen Klem",
"license": "MIT",
"bugs": {
"url": "https://github.com/eklem/hit-highlighter/issues"
},
"homepage": "https://github.com/eklem/hit-highlighter#readme"
}