-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "apollo-datasource-soap",
"version": "3.0.0",
"description": "A simple implementation of apollo datasource for soap requests",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"pretest": "npm audit --omit=dev && prettier --check . && eslint ./src",
"build": "tsc",
"test": "jest --coverage",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm test",
"deploy": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RishikeshDarandale/apollo-datasource-soap.git"
},
"keywords": [
"graphql",
"apollo",
"datasource",
"soap"
],
"author": "Rishikesh Darandale",
"license": "MIT",
"bugs": {
"url": "https://github.com/RishikeshDarandale/apollo-datasource-soap/issues"
},
"homepage": "https://github.com/RishikeshDarandale/apollo-datasource-soap#readme",
"dependencies": {
"@apollo/server": "4.9.4",
"@apollo/utils.keyvaluecache": "^3.1.0",
"graphql": "^16.5.0",
"soap": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/bluebird": "^3.5.35",
"@types/jest": "^29.5.4",
"@types/node": "^18.17.12",
"@types/request": "^2.48.7",
"@types/sax": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"npm-merge-driver": "^0.0.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}