forked from dderevjanik/wsdl-tsclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.97 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@the-control-group/wsdl-tsclient",
"version": "1.5.1",
"description": "Generate typescript soap client with typescript definitons from WSDL file.",
"main": "dist/src/index.js",
"bin": {
"wsdl-tsclient": "dist/src/cli.js"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"pretest": "rm -rf ./test/generated",
"test": "npm run test:node-soap && npm run test:node-soap2 && npm run test:public",
"test:node-soap": "ts-node node_modules/tape/bin/tape ./test/node-soap/*.test.ts | tap-spec",
"test:node-soap2": "ts-node node_modules/tape/bin/tape ./test/node-soap/**/*.test.ts | tap-spec",
"test:public": "ts-node node_modules/tape/bin/tape ./test/resources-public/**/*.test.ts | tap-spec",
"preversion": "npm test && npm run build",
"dev": "ts-node -T ./dev.ts",
"build": "tsc",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dderevjanik/wsdl-tsclient.git"
},
"keywords": [
"soap",
"soap-client",
"wsdl",
"wsdl-client",
"typescript"
],
"author": "Daniel Derevjanik <daniel.derevjanik@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dderevjanik/wsdl-tsclient/issues"
},
"homepage": "https://github.com/dderevjanik/wsdl-tsclient#readme",
"devDependencies": {
"prettier": "^2.6.2",
"tap-spec": "^5.0.0",
"tape": "^5.5.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/node": "^17.0.24",
"@types/supports-color": "^8.1.0",
"@types/tape": "^4.13.2",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"camelcase": "^6.3.0",
"chalk": "^4.1.1",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"sanitize-filename": "^1.6.3",
"soap": "^0.43.0",
"supports-color": "^8.1.1",
"ts-morph": "^14.0.0",
"yargs": "^16.2.0"
}
}