soap 1.8.0 → 1.9.1
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 +143 -94
- package/lib/http.js +14 -6
- package/lib/http.js.map +1 -1
- package/lib/server.d.ts +2 -1
- package/lib/server.js +24 -38
- package/lib/server.js.map +1 -1
- package/lib/wsdl/index.js +11 -2
- package/lib/wsdl/index.js.map +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soap",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "A minimal node SOAP client",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.19.0"
|
|
7
7
|
},
|
|
8
8
|
"author": "Vinay Pulim <v@pulim.com>",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"axios": "^1.
|
|
10
|
+
"axios": "^1.15.0",
|
|
11
11
|
"axios-ntlm": "^1.4.6",
|
|
12
12
|
"debug": "^4.4.3",
|
|
13
13
|
"follow-redirects": "^1.15.11",
|
|
14
14
|
"formidable": "^3.5.4",
|
|
15
|
-
"sax": "^1.
|
|
16
|
-
"whatwg-mimetype": "
|
|
15
|
+
"sax": "^1.6.0",
|
|
16
|
+
"whatwg-mimetype": "5.0.0",
|
|
17
17
|
"xml-crypto": "^6.1.2"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"format": "prettier --write .",
|
|
34
34
|
"format:check": "prettier --check .",
|
|
35
35
|
"toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3",
|
|
36
|
-
"cover": "OPENSSL_ENABLE_SHA1_SIGNATURES=1 nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --no-parallel --timeout 30000 --exit test/*-test.js test/security/*.js",
|
|
36
|
+
"cover": "OPENSSL_ENABLE_SHA1_SIGNATURES=1 TZ=UTC nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --no-parallel --timeout 30000 --exit test/*-test.js test/security/*.js",
|
|
37
37
|
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
|
|
38
38
|
"docs": "typedoc --out docs",
|
|
39
|
-
"test": "mocha --timeout 15000 --bail --exit test/*-test.js test/security/*.js"
|
|
39
|
+
"test": "TZ=UTC mocha --timeout 15000 --bail --exit test/*-test.js test/security/*.js"
|
|
40
40
|
},
|
|
41
41
|
"keywords": [
|
|
42
42
|
"soap"
|
|
@@ -48,18 +48,18 @@
|
|
|
48
48
|
"@types/formidable": "^3.4.6",
|
|
49
49
|
"@types/node": "^14.0.0",
|
|
50
50
|
"@types/sax": "^1.2.7",
|
|
51
|
-
"@types/whatwg-mimetype": "^
|
|
51
|
+
"@types/whatwg-mimetype": "^5.0.0",
|
|
52
52
|
"body-parser": "^2.2.0",
|
|
53
53
|
"colors": "^1.4.0",
|
|
54
54
|
"diff": "^8.0.2",
|
|
55
|
-
"doctoc": "^2.
|
|
55
|
+
"doctoc": "^2.3.0",
|
|
56
56
|
"duplexer": "~0.1.2",
|
|
57
57
|
"eslint": "^10.0.1",
|
|
58
58
|
"express": "^5.1.0",
|
|
59
59
|
"finalhandler": "^2.1.0",
|
|
60
60
|
"glob": "^13.0.0",
|
|
61
61
|
"mocha": "^11.7.4",
|
|
62
|
-
"nyc": "^
|
|
62
|
+
"nyc": "^18.0.0",
|
|
63
63
|
"prettier": "^3.6.2",
|
|
64
64
|
"readable-stream": "^4.7.0",
|
|
65
65
|
"semver": "^7.7.3",
|