-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "hljs-enhance",
"version": "2.0.3",
"description": "Adds a little extra stuff to highlight.js",
"license": "MIT",
"type": "module",
"module": "hljs-enhance.js",
"browser": "hljs-enhance.js",
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/hljs-enhance.git"
},
"homepage": "https://github.com/center-key/hljs-enhance",
"bugs": "https://github.com/center-key/hljs-enhance/issues",
"docs": "https://github.com/center-key/hljs-enhance#readme",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"highlightjs",
"javascript",
"syntax-highlighting"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"browser": true,
"node": true
},
"scripts": {
"pretest": "html-validator spec.html docs",
"test": "jshint . --exclude-path .gitignore"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "~6.6",
"dna-engine": "~3.2",
"highlight.js": "~11.10",
"jshint": "~2.13",
"w3c-html-validator": "~1.8",
"web-ignition": "~2.2"
}
}