-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "soap-graphql",
"version": "4.0.0-alpha.0",
"description": "Create a GraphQL schema from a WSDL-defined SOAP endpoint.",
"author": "sevenclev",
"license": "MIT",
"keywords": [
"soap",
"graphql",
"node-soap"
],
"repository": {
"type": "git",
"url": "https://github.com/AEB-labs/node-soap-graphql.git"
},
"engines": {
"node": ">=14.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register ./spec/**/*.spec.ts",
"tsc": "tsc --project ./tsconfig.build.json",
"build": "npm run-script tsc",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"dependencies": {
"graphql-scalars": "^1.18.0"
},
"peerDependencies": {
"axios": "^0.27.2",
"graphql": "^15.0.0 || ^16.0.0",
"soap": "^0.45.0"
},
"devDependencies": {
"@types/node": "^16.11.64",
"axios": "^0.27.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"graphql": "^16.7.1",
"graphql-http": "^1.19.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"soap": "^0.45.0",
"ts-node": "^10.9.1",
"typescript": "~4.8.4"
}
}