forked from highlightjs/highlight.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "highlight.js",
"description": "Syntax highlighting with language autodetection.",
"keywords": [
"highlight",
"syntax"
],
"homepage": "https://highlightjs.org/",
"version": "9.15.0",
"author": {
"name": "Ivan Sagalaev",
"email": "maniac@softwaremaniacs.org"
},
"contributors": [],
"bugs": {
"url": "https://github.com/highlightjs/highlight.js/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/highlightjs/highlight.js.git"
},
"main": "./lib/index.js",
"bin": {
"hljs": "./tools/build.js"
},
"scripts": {
"mocha": "mocha",
"test": "mocha --globals document test",
"test-browser": "mocha --globals document test/browser"
},
"engines": {
"node": "*"
},
"dependencies": {
"commander": "^2.19.0",
"bluebird": "^3.5.3",
"del": "^3.0.0",
"gear": "^0.9.7",
"gear-lib": "^0.9.2",
"glob": "^7.1.3",
"js-beautify": "^1.8.9",
"jsdom": "9.2.1",
"lodash": "^4.17.11",
"tiny-worker": "^2.1.2"
},
"devDependencies": {
"mocha": "^6.0.0",
"should": "^13.2.3"
},
"greenkeeper": {
"ignore": [
"jsdom"
]
}
}