forked from moszeed/easysoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 969 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
45
46
{
"name": "easysoap",
"description": "a easy to use Soap Client for Node.js",
"author": {
"name": "Michael Röber",
"email": "moszeed@gmail.com"
},
"version": "2.0.1",
"main": "./src/index.js",
"dependencies": {
"request": "^2.69.0",
"underscore": "^1.8.3",
"wsdlrdr": "^0.4.0",
"xmldoc": "^1.1.0"
},
"devDependencies": {
"tape": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest"
},
"keywords": [
"soap",
"wsdl"
],
"repository": {
"type": "git",
"url": "https://github.com/moszeed/easysoap.git"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "node ./tests/tests.js"
},
"license": "MIT",
"contributors": [
{
"name": "Michael Röber",
"email": "moszeed@gmail.com"
}
]
}