forked from vpulim/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 855 Bytes
/
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
{
"name": "soap",
"version": "0.5.1",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=0.8.0"
},
"author": "Vinay Pulim <[email protected]>",
"dependencies": {
"lodash": "~2.4.1",
"request": ">=2.9.0",
"sax": ">=0.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",
"test": "mocha test/*-test.js test/security/*.js"
},
"keywords": [
"soap"
],
"licenses": [
{
"type": "MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"mocha": "~1.17.0",
"jshint": "2.3.0",
"glob": "~3.2.8",
"should": "~3.3.0"
}
}