forked from vpulim/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.26 KB
/
package.json
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
76
77
78
79
80
81
82
83
84
{
"name": "soap",
"version": "0.45.0",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=12.0.0"
},
"author": "Vinay Pulim <[email protected]>",
"dependencies": {
"axios-ntlm": "^1.2.0",
"debug": "^4.3.2",
"formidable": "^2.0.1",
"get-stream": "^6.0.1",
"lodash": "^4.17.21",
"sax": ">=0.6",
"strip-bom": "^3.0.0",
"uuid": "^8.3.2",
"whatwg-mimetype": "3.0.0",
"xml-crypto": "^2.1.3"
},
"peerDependencies": {
"axios": ">=0.21.1"
},
"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.7",
"@types/express": "^4.17.13",
"@types/formidable": "^2.0.4",
"@types/lodash": "^4.14.172",
"@types/node": "^11.15.54",
"@types/request": "^2.48.7",
"@types/sax": "^1.2.3",
"@types/uuid": "^8.3.1",
"@types/whatwg-mimetype": "^2.1.1",
"body-parser": "^1.15.2",
"colors": "^1.3.3",
"coveralls": "^3.1.1",
"diff": "^4.0.1",
"doctoc": "^2.0.1",
"duplexer": "~0.1.1",
"express": "^4.16.4",
"finalhandler": "^1.1.1",
"glob": "^7.1.7",
"jshint": "^2.13.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"readable-stream": "~2.0.2",
"semver": "^5.6.0",
"serve-static": "^1.14.1",
"should": "^13.2.3",
"sinon": "^1.17.7",
"source-map-support": "^0.5.10",
"timekeeper": "^2.1.2",
"tslint": "^5.18.0",
"typedoc": "^0.20.37",
"typescript": "^3.9.10"
}
}