-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "highlightjs-structured-text",
"version": "1.4.9",
"description": "highlight.js syntax definition for Structured Text IEC 61131-3 language",
"main": "src/iecst.js",
"scripts": {
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"test": "npx mocha --reporter spec"
},
"files": [
"src/iecst.js",
"dist/iecst.min.js"
],
"repository": {
"type": "git",
"url": "https://github.com/highlightjs/highlightjs-structured-text.git"
},
"keywords": [
"ST",
"Structured Text",
"IEC 61131-3",
"CoDeSys",
"PLC",
"highlight.js",
"highlightjs",
"syntax-highlight",
"syntax"
],
"author": "Sergey Romanov",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/highlightjs/highlightjs-structured-text/issues"
},
"homepage": "https://github.com/highlightjs/highlightjs-structured-text#readme",
"devDependencies": {
"mocha": "^8.3.2",
"should": "^13.2.3"
},
"dependencies": {
"highlight.js": "^10.4.1"
}
}