/
dimamir
/
node-soap
Обзор
Документация
Войти
/
dimamir
/
node-soap
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
package.json
76 строк
2 KB
Vasily Martynov
Release v1.1.6
03 ноя 2024, 22:00
03 ноя 2024, 22:00
8837d8d
Код
Авторство
О чём код?
{ "name": "soap", "version": "1.1.6", "description": "A minimal node SOAP client", "engines": { "node": ">=14.0.0" }, "author": "Vinay Pulim <v@pulim.com>", "dependencies": { "axios": "^1.7.7", "axios-ntlm": "^1.4.2", "debug": "^4.3.6", "formidable": "^3.5.1", "get-stream": "^6.0.1", "lodash": "^4.17.21", "sax": "^1.4.1", "strip-bom": "^3.0.0", "whatwg-mimetype": "4.0.0", "xml-crypto": "^6.0.0" }, "repository": { "type": "git", "url": "https://github.com/vpulim/node-soap.git" }, "main": "./index.js", "types": "./lib/soap.d.ts", "directories": { "lib": "./lib", "test": "./test" }, "scripts": { "prepare": "npm run build", "build": "tsc -p .", "clean": "rm -rf lib", "watch": "tsc -w -p .", "lint": "tslint -p tsconfig.json", "toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3", "cover": "nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --timeout 15000 --exit test/*-test.js test/security/*.js", "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v", "docs": "typedoc --out docs", "test": "mocha --timeout 15000 --bail --exit test/*-test.js test/security/*.js" }, "keywords": [ "soap" ], "license": "MIT", "devDependencies": { "@types/axios": "^0.14.0", "@types/debug": "^4.1.12", "@types/formidable": "^2.0.4", "@types/lodash": "^4.17.5", "@types/node": "^14.0.0", "@types/sax": "^1.2.7", "@types/whatwg-mimetype": "^3.0.2", "body-parser": "^1.20.3", "colors": "^1.4.0", "diff": "^5.2.0", "doctoc": "^2.2.1", "duplexer": "~0.1.2", "express": "^4.21.1", "finalhandler": "^1.3.1", "glob": "^11.0.0", "mocha": "^10.7.3", "nyc": "^17.0.0", "readable-stream": "~2.0.2", "semver": "^7.6.2", "serve-static": "^1.15.0", "should": "^13.2.3", "sinon": "^18.0.0", "source-map-support": "^0.5.21", "timekeeper": "^2.1.2", "tslint": "^5.18.0", "typedoc": "^0.23.10", "typescript": "^4.7.4" } }