forked from vpulim/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "soap",
"version": "0.18.0",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=0.10.0"
},
"author": "Vinay Pulim <v@pulim.com>",
"dependencies": {
"compress": "^0.99.0",
"concat-stream": "^1.5.1",
"debug": "~0.7.4",
"ejs": "~2.5.5",
"finalhandler": "^0.5.0",
"lodash": "^3.10.1",
"node-uuid": "~1.4.3",
"optional": "^0.1.3",
"request": ">=2.9.0",
"sax": ">=0.6",
"selectn": "^0.9.6",
"serve-static": "^1.11.1",
"strip-bom": "~0.3.1",
"xml-crypto": "~0.8.0"
},
"optionalDependencies": {
"ursa": "0.8.5 || >=0.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/milewise/node-soap.git"
},
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"toc": "./node_modules/.bin/doctoc Readme.md --github --maxlevel 3",
"pretest": "jshint index.js lib test",
"cover": "istanbul cover _mocha -- --timeout 10000 test/*-test.js test/security/*.js",
"coveralls": "cat ./coverage/lcov.info | coveralls -v",
"test": "mocha --timeout 10000 test/*-test.js test/security/*.js"
},
"keywords": [
"soap"
],
"license": "MIT",
"devDependencies": {
"body-parser": "^1.15.2",
"colors": "^1.1.2",
"coveralls": "^2.11.6",
"diff": "^2.2.1",
"doctoc": "^1.0.0",
"duplexer": "~0.1.1",
"express": "^4.14.0",
"glob": "~3.2.8",
"istanbul": "^0.4.1",
"jshint": "2.3.0",
"mocha": "~1.17.0",
"readable-stream": "~2.0.2",
"semver": "~5.0.3",
"should": "~3.3.0",
"sinon": "^1.17.5",
"timekeeper": "~0.0.4"
}
}