-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 771 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 771 Bytes
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
{
"name": "document-highlighter",
"version": "2.1.0",
"description": "Highlight a search-query in a HTML document",
"author": "Matthieu Bacconnier <matthieu.bacconnier@papiel.fr>",
"scripts": {
"test": "NODE_ENV=test mocha -R spec test/ --recursive",
"coverage": "NODE_ENV=test istanbul cover node_modules/mocha/bin/_mocha -- -R spec test/"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/Neamar/document-highlighter/"
},
"keywords": [
"highlight",
"highlighting",
"html",
"snippet",
"query",
"queries",
"search"
],
"dependencies": {},
"devDependencies": {
"mocha": "1.18.x",
"should": "3.3.x"
},
"licence": "WTFPL",
"engines": {
"node": ">=0.10"
}
}