-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 KB
/
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
{
"name": "soap-web-client",
"version": "0.0.1",
"description": "small simple soap-web-client library",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:yogeshjoshi/soap-web-client.git"
},
"bugs": {
"url": "https://github.com/yogeshjoshi/soap-web-client/issues"
},
"homepage": "https://github.com/yogeshjoshi/soap-web-client/blob/master/README.md",
"scripts": {
"test": "jest --config=jestconfig.json",
"coverage": "jest --config=jestconfig.json --coverage",
"build": "tsc",
"clean": "sudo rm -rf node_modules/"
},
"author": "joshiyogesh",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"axios-mock-adapter": "^1.17.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"dependencies": {
"axios": "^0.19.2"
},
"keywords": [
"soap",
"soap-web-client",
"wsdl",
"soap services",
"soap web services",
"soap clinet",
"soap node",
"soap npm"
]
}