-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "highlighter.js",
"version": "1.0.0",
"description": "Highlighter.js is a tiny (pure javascript) library to allow you to navigate, select and highlight DOM elements.",
"scripts": {
"js-min": "./tasks/banner | xargs -0 -I banner uglifyjs src/js/highlighter.js --preamble banner -c -m --screw-ie8 -p relative --source-map dist/highlighter.min.js.map -o dist/highlighter.min.js",
"lint": "eslint -c .eslintrc src && jscs -c .jscsrc src",
"precommit": "npm run-script lint"
},
"keywords": [
"dom",
"navigate",
"browse",
"highlight",
"highlighter",
"javascript",
"selector",
"underline",
"elements"
],
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/720kb/highlighter.js.git"
},
"author": "Filippo Oretti <[email protected]>",
"contributors": [
"Dario Andrei <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/720kb/highlighter.js/issues"
},
"homepage": "https://github.com/720kb/highlighter.js",
"dependencies": {},
"devDependencies": {
"eslint": "*",
"husky": "*",
"jscs": "*",
"uglifyjs": "*"
}
}