-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
67 lines (67 loc) · 2.02 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
66
67
{
"name": "wsdl-tsclient",
"version": "1.7.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",
"prepublishOnly": "npm test && npm run dist",
"dev": "ts-node -T ./dev.ts",
"dist": "tsc",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dderevjanik/wsdl-tsclient/issues"
},
"homepage": "https://github.com/dderevjanik/wsdl-tsclient#readme",
"devDependencies": {
"@types/node": "^20.14.11",
"@types/supports-color": "^8.1.3",
"@types/tape": "^5.6.4",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"tap-spec": "^5.0.0",
"tape": "^5.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"camelcase": "^6.3.0",
"chalk": "^4.1.1",
"sanitize-filename": "^1.6.3",
"soap": "^1.1.0",
"supports-color": "^8.1.1",
"ts-morph": "^23.0.0",
"yargs": "^17.7.2"
}
}