-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.12 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "soap",
"version": "1.9.1",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=20.19.0"
},
"author": "Vinay Pulim <v@pulim.com>",
"dependencies": {
"axios": "^1.15.0",
"axios-ntlm": "^1.4.6",
"debug": "^4.4.3",
"follow-redirects": "^1.15.11",
"formidable": "^3.5.4",
"sax": "^1.6.0",
"whatwg-mimetype": "5.0.0",
"xml-crypto": "^6.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/vpulim/node-soap.git"
},
"main": "./lib/soap.js",
"types": "./lib/soap.d.ts",
"directories": {
"lib": "./lib",
"test": "./test"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w -p .",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3",
"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",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"docs": "typedoc --out docs",
"test": "TZ=UTC mocha --timeout 15000 --bail --exit test/*-test.js test/security/*.js"
},
"keywords": [
"soap"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/debug": "^4.1.12",
"@types/formidable": "^3.4.6",
"@types/node": "^14.0.0",
"@types/sax": "^1.2.7",
"@types/whatwg-mimetype": "^5.0.0",
"body-parser": "^2.2.0",
"colors": "^1.4.0",
"diff": "^8.0.2",
"doctoc": "^2.3.0",
"duplexer": "~0.1.2",
"eslint": "^10.0.1",
"express": "^5.1.0",
"finalhandler": "^2.1.0",
"glob": "^13.0.0",
"mocha": "^11.7.4",
"nyc": "^18.0.0",
"prettier": "^3.6.2",
"readable-stream": "^4.7.0",
"semver": "^7.7.3",
"serve-static": "^2.2.0",
"should": "^13.2.3",
"sinon": "^21.0.0",
"source-map-support": "^0.5.21",
"timekeeper": "^2.3.1",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}