forked from highlightjs/highlight.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "highlight.js",
"description": "Syntax highlighting with language autodetection.",
"keywords": [
"highlight",
"syntax"
],
"homepage": "https://highlightjs.org/",
"version": "9.1.0",
"author": {
"name": "Ivan Sagalaev",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/isagalaev/highlight.js/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/isagalaev/highlight.js.git"
},
"main": "./lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/",
"test-browser": "./node_modules/.bin/mocha test/browser/"
},
"engines": {
"node": "*"
},
"devDependencies": {
"bluebird": "^3.0.1",
"commander": "^2.3.0",
"del": "^2.0.2",
"gear": "^0.9.4",
"gear-lib": "^0.9.2",
"glob": "^6.0.1",
"jsdom": "7.0.2",
"lodash": "^3.3.1",
"mocha": "^2.0.1",
"should": "^7.0.1",
"tiny-worker": "^1.1.1",
"js-beautify": "^1.5.10"
}
}