@ygracs/xepg-lib-js 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/README.md +4 -2
- package/doc/xepgdoc-lib.md +275 -14
- package/index.js +10 -9
- package/lib/xepgdoc-lib.js +620 -143
- package/package.json +5 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ygracs/xepg-lib-js",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"description": "A library for handling an EPG-sources based on an XEPG-format",
|
|
5
5
|
"author": "ygracs <cs70th-om@rambler.ru>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://gitlab.com/ygracs/xepg-lib-js.git"
|
|
10
10
|
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"xml",
|
|
13
|
+
"EPG"
|
|
14
|
+
],
|
|
11
15
|
"main": "./index.js",
|
|
12
16
|
"files": [
|
|
13
17
|
"doc/xepgdoc-lib.md",
|
|
@@ -22,15 +26,6 @@
|
|
|
22
26
|
],
|
|
23
27
|
"scripts": {
|
|
24
28
|
"test": "cross-env TZ='Etc/UTC' jest",
|
|
25
|
-
"test-xepg": "TZ='Etc/UTC' jest ./test",
|
|
26
|
-
"test-xepg:sl": "jest TXEpgSchedulesList",
|
|
27
|
-
"test-xepg:hc": "TZ='Etc/UTC' jest TXEpgHeader",
|
|
28
|
-
"test-xepg:pc": "jest TXEpgProvider",
|
|
29
|
-
"test-xepg:dts": "jest TXEpgDTS",
|
|
30
|
-
"test-xepg:cp": "jest TXEpgContentProvider",
|
|
31
|
-
"win:test": "set TZ='Etc/UTC' && jest",
|
|
32
|
-
"win:test-xepg": "set TZ='Etc/UTC' && jest ./test",
|
|
33
|
-
"win:test-xepg:hc": "set TZ='Etc/UTC' && jest TXEpgHeader",
|
|
34
29
|
"build-doc-md": "jsdoc2md",
|
|
35
30
|
"build-doc-html": "jsdoc"
|
|
36
31
|
},
|