forked from vpulim/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"_from": "soap",
"_id": "soap@0.29.0",
"_inBundle": false,
"_integrity": "sha512-eM+cnF6ZdJksMP94BdGoH4hxgMWxRLhJ7wVCY1nuSfeH7gsNZ6eGv8w+8BYZ8siQpJpM06gO08aU1KgdAm7qLQ==",
"_location": "/soap",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "soap",
"name": "soap",
"escapedName": "soap",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/soap/-/soap-0.29.0.tgz",
"_shasum": "1d696223e263e9c5bb70cf0bc9d2626a7077b489",
"_spec": "soap",
"_where": "D:\\User Files\\mexus\\Desktop\\Work Projects\\soap-tests",
"author": {
"name": "Vinay Pulim",
"email": "v@pulim.com"
},
"bugs": {
"url": "https://github.com/vpulim/node-soap/issues"
},
"bundleDependencies": false,
"dependencies": {
"@types/request": "^2.48.1",
"bluebird": "^3.5.0",
"concat-stream": "^2.0.0",
"debug": "^4.1.1",
"httpntlm": "^1.5.2",
"lodash": "^4.17.15",
"request": ">=2.9.0",
"sax": ">=0.6",
"serve-static": "^1.11.1",
"strip-bom": "^3.0.0",
"uuid": "^3.1.0",
"xml-crypto": "^1.4.0"
},
"deprecated": false,
"description": "A minimal node SOAP client",
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/debug": "^4.1.2",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.122",
"@types/node": "^11.11.0",
"@types/sax": "^1.0.1",
"@types/uuid": "^3.4.4",
"body-parser": "^1.15.2",
"colors": "^1.3.3",
"coveralls": "^3.0.5",
"diff": "^4.0.1",
"doctoc": "^1.4.0",
"duplexer": "~0.1.1",
"express": "^4.16.4",
"finalhandler": "^1.1.1",
"glob": "^7.1.3",
"jshint": "^2.10.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"readable-stream": "~2.0.2",
"semver": "^5.6.0",
"should": "^13.2.3",
"sinon": "^1.17.7",
"source-map-support": "^0.5.10",
"timekeeper": "^2.1.2",
"tslint": "^5.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/vpulim/node-soap#readme",
"keywords": [
"soap"
],
"license": "MIT",
"main": "./index.js",
"name": "soap",
"repository": {
"type": "git",
"url": "git+https://github.com/vpulim/node-soap.git"
},
"scripts": {
"build": "tsc -p .",
"clean": "rm -rf lib",
"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",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"test": "mocha --timeout 15000 --bail --exit test/*-test.js test/security/*.js",
"toc": "doctoc Readme.md --github --maxlevel 3",
"watch": "tsc -w -p ."
},
"types": "./lib/soap.d.ts",
"version": "0.29.0"
}