forked from StenaIT/wsdl-to-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "@stenait/wsdl-to-ts",
"version": "0.2.6",
"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",
"prettier": "prettier --parser typescript --write 'src/**/*.{ts,tsx}'",
"watch": "npx nodemon -w src/index.ts -w src/wsdl-to-ts.ts -x \"npx ts-node src/index.ts 'http://wstravel.stenaline.com/SWS/Service.svc?wsdl'\""
},
"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",
"husky": "^4.2.3",
"prettier": "^2.0.2",
"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/StenaIT/wsdl-to-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/StenaIT/wsdl-to-ts.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run prettier",
"git add"
]
}
}