forked from vpulim/node-soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 897 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
{
"name": "soap",
"version": "0.4.0",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=0.8.0"
},
"author": "Vinay Pulim <[email protected]>",
"dependencies": {
"sax": ">=0.6",
"request": ">=2.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/milewise/node-soap.git"
},
"main": "./index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"mocha": "mocha -R spec -u exports test/*-test.js",
"jshint": "jshint index.js lib/http.js lib/client.js lib/soap.js lib/server.js lib/wsdl.js",
"test": "npm run-script jshint && npm run-script mocha"
},
"keywords": [
"soap"
],
"licenses": [
{
"type": "MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"mocha": "~1.17.0",
"jshint": "~2.4.2",
"glob": "~3.2.8"
}
}