forked from moszeed/easysoap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 980 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
43
44
{
"name": "easysoap",
"description": "a easy to use Soap Client for Node.js",
"author": {
"name": "Michael Röber",
"email": "[email protected]"
},
"version": "1.0.6",
"main": "./src/easysoap.js",
"dependencies": {
"request": "git+https://github.com/sstimac/request.git",
"underscore": "^1.8.3",
"xmldoc": "^0.4.0",
"wsdlrdr": "git+https://github.com/sstimac/wsdlrdr.git",
"rn-nodeify": "7.0.1",
"asyncstorage-down": "4.0.0"
},
"devDependencies": {
"tap-spec": "^4.1.0",
"tape" : "^4.2.2"
},
"keywords": [
"soap",
"wsdl"
],
"repository": {
"type": "git",
"url": "https://github.com/moszeed/easysoap.git"
},
"engines" : {
"node" : ">=4.0.0"
},
"scripts": {
"test": "node ./tests/tests.js | tap-spec",
"postinstall": "rn-nodeify --install --hack"
},
"license": "MIT",
"contributors": [
{
"name": "Michael Röber",
"email": "[email protected]"
}
]
}