-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 870 Bytes
/
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
{
"name": "highlightjs-your-language",
"version": "0.1.0",
"author": "John Foster",
"description": "A new language template set up when creating a language definition for highlightjs",
"main": "src/languages/your-language.js",
"scripts": {
"test": "jasmine"
},
"files": [
"src/languages/your-language.js"
],
"repository": {
"type": "git",
"url": "https://github.com/jf990/highlightjs-language-template.git"
},
"keywords": [
"your-language",
"javascript",
"highlight",
"highlight.js",
"highlightjs",
"syntax",
"template"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jf990/highlightjs-language-template/issues"
},
"homepage": "https://github.com/jf990/highlightjs-language-template",
"devDependencies": {
"highlight.js": "^10.7.1",
"jasmine": "^3.7.0"
}
}