forked from goce-cz/wsdl-to-ts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "wsdl-to-ts",
"version": "0.2.3",
"description": "Build TypeScript typings for SOAP WSDL",
"main": "lib/wsdl-to-ts.js",
"module": "esm/wsdl-to-ts.js",
"types": "esm/wsdl-to-ts.d.ts",
"scripts": {
"test": "node test/index.js",
"build": "npx tsc -p tsconfig.json --skipLibCheck && npx tsc -p tsconfig.json --skipLibCheck -d --outDir esm --module es2015 --target es2016",
"ci": "npm run build && npm test"
},
"bin": {
"wsdl-to-ts": "lib/index.js"
},
"keywords": [
"soap",
"typescript",
"wsdl",
"ts"
],
"author": {
"name": "TimLuq",
"url": "https://github.com/TimLuq"
},
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.23",
"@types/minimist": "^1.2.0",
"@types/mkdirp": ">=0.5.1 <1.0.0",
"@types/node": ">=6.0.0 <12.0.0",
"tslint": "^5.11.0",
"typescript": "^2.2.0"
},
"dependencies": {
"minimist": "^1.2.0",
"mkdirp": ">=0.5.1 <1.0.0",
"soap": "^0.27.0"
},
"bugs": {
"url": "https://github.com/TimLuq/wsdl-to-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/TimLuq/wsdl-to-ts.git"
}
}