forked from VirtuOz/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "soap",
"version": "0.13.0",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=0.8.0"
},
"author": "Vinay Pulim <[email protected]>",
"dependencies": {
"debug": "~0.7.4",
"lodash": "3.x.x",
"request": ">=2.9.0",
"sax": ">=0.6",
"selectn": "^0.9.6",
"strip-bom": "~0.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/milewise/node-soap.git"
},
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"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": {
"coveralls": "^2.11.6",
"duplexer": "~0.1.1",
"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",
"timekeeper": "~0.0.4"
}
}