sip-lab 1.12.17 → 1.12.21
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/README.md +9 -0
- package/package.json +5 -8
- package/runtests +15 -0
package/README.md
CHANGED
|
@@ -37,6 +37,11 @@ However since it takes several minutes to build this module, you can install it
|
|
|
37
37
|
npm install -g sip-lab
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
+
But if you do so, you will need to set NODE_PATH for node to find it by doing:
|
|
41
|
+
```
|
|
42
|
+
export NODE_PATH=$(npm root --quiet -g)
|
|
43
|
+
```
|
|
44
|
+
|
|
40
45
|
To test from within this repo just build and install by doing:
|
|
41
46
|
```
|
|
42
47
|
npm install -g node-gyp
|
|
@@ -50,9 +55,13 @@ The above script has detailed comments.
|
|
|
50
55
|
Please read it to undestand how to write your own test scripts.
|
|
51
56
|
|
|
52
57
|
The module is known to work properly in Ubuntu 18.04.4, Ubuntu 20.04.4, Debian 8 and Debian 10 (and it is expected to work in Debian 9).
|
|
58
|
+
|
|
53
59
|
It was originally developed with node v.10 and tested with v.12 and v16.13.1 and it is expected to work with latest versions of node.
|
|
60
|
+
|
|
54
61
|
(it is known to not work with node v.8)
|
|
55
62
|
|
|
63
|
+
It currently doesn't work with Debian 11 (see #29).
|
|
64
|
+
|
|
56
65
|
|
|
57
66
|
|
|
58
67
|
### About the code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sip-lab",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.21",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"engines": {
|
|
@@ -19,13 +19,10 @@
|
|
|
19
19
|
"gypfile": true,
|
|
20
20
|
"homepage": "https://github.com/MayamaTakeshi/sip-lab",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"node-addon-api": "^1.7.2",
|
|
23
|
-
"node-gyp": "^8.4.1"
|
|
24
|
-
},
|
|
25
|
-
"devDependencies": {
|
|
26
22
|
"@mayama/zeq": "^4.1.14",
|
|
27
|
-
"data-matching": "^1.
|
|
28
|
-
"
|
|
29
|
-
"
|
|
23
|
+
"data-matching": "^1.24.0",
|
|
24
|
+
"node-addon-api": "^1.7.2",
|
|
25
|
+
"node-gyp": "^8.4.1",
|
|
26
|
+
"sip-matching": "^1.3.31"
|
|
30
27
|
}
|
|
31
28
|
}
|