-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "node-soap-example",
"version": "1.0.0",
"type": "module",
"description": "A simple SOAP Server and Client using Node.js, express and node-soap (https://github.com/vpulim/node-soap)",
"main": "app.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git"
},
"keywords": [
"SOAP",
"node.js",
"express",
"SOAP-server",
"SOAP-client",
"server",
"client",
"web",
"service"
],
"author": "Santiago Acosta",
"license": "ISC",
"bugs": {
"url": "https://github.com/macogala/node-soap-example/issues"
},
"homepage": "https://github.com/macogala/node-soap-example#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.15.2",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"node-fetch": "^3.2.5",
"nodemon": "^2.0.16",
"soap": "^0.19.0"
}
}