-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.63 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
68
69
{
"name": "supertest-graphql",
"version": "1.1.4",
"description": "Extends supertest to test a GraphQL endpoint",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist/* && tsc",
"test": "jest",
"check-types": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"prepublishOnly": "npm run build",
"release": "auto shipit"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/alexstrat/supertest-graphql"
},
"keywords": [
"supertest",
"graphql",
"test",
"jest",
"apollo"
],
"author": "Alexandre Lacheze",
"license": "ISC",
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@graphql-tools/schema": "^8.3.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"apollo-server-express": "^3.5.0",
"auto": "^10.32.5",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"graphql": "^16.1.0",
"graphql-subscriptions": "^2.0.0",
"jest": "^27.4.5",
"prettier": "2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"delay": "^5.0.0",
"@types/supertest": "^2.0.11",
"graphql-ws": "^5.6.3",
"subscriptions-transport-ws": "^0.11.0",
"supertest": "^6.1.6",
"ws": "^8.4.0",
"zen-observable-ts": "^1.1.0"
},
"auto": {
"plugins": [
"npm"
]
}
}