forked from reconbot/graphql-lambda-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.55 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.55 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "graphql-lambda-subscriptions",
"version": "0.0.0-development",
"description": "Graphql-WS compatible Lambda Powered Subscriptions",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index-esm.mjs"
},
"engines": {
"node": "^14.13 || >=16"
},
"repository": "git@github.com:reconbot/graphql-lambda-subscriptions.git",
"homepage": "https://github.com/reconbot/graphql-lambda-subscriptions",
"scripts": {
"test": "mocha",
"build": "npm run clean && tsc -p tsconfig-build.json && rollup -c && node -r esbuild-register bundle-types",
"clean": "rm -rf dist-ts dist",
"docs": "typedoc --options typedoc.js lib/index.ts",
"format": "eslint lib/**/*.ts lib/*.ts --fix",
"lint": "tsc && eslint lib/**/*.ts lib/*.ts",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"graphql",
"lambda",
"subscriptions",
"API Gateway",
"serverless",
"subscriptionless",
"AWS"
],
"license": "MIT",
"dependencies": {
"debug": "^4.3.2",
"streaming-iterables": "^6.0.0"
},
"peerDependencies": {
"aws-sdk": ">= 2.844.0",
"graphql": ">= 16.0.0"
},
"devDependencies": {
"@architect/functions": "^4.1.0",
"@architect/sandbox": "^4.4.0",
"@graphql-tools/schema": "^8.0.3",
"@microsoft/api-extractor": "^7.18.15",
"@types/architect__sandbox": "^3.3.3",
"@types/aws-lambda": "^8.10.84",
"@types/chai": "^4.2.22",
"@types/chai-subset": "^1.3.3",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.21",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"aggregate-error": "^4.0.0",
"aws-sdk": "^2.1033.0",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"esbuild": "^0.14.1",
"esbuild-register": "^3.0.0",
"eslint": "^8.3.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"graphql": "^16.0.1",
"graphql-ws": "^5.3.0",
"inside-out-async": "^1.0.0",
"mocha": "^9.1.2",
"rollup": "^2.57.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^19.0.2",
"typedoc": "^0.22.9",
"typedoc-plugin-markdown": "^3.11.7",
"typescript": "^4.5.2",
"ws": "^8.0.0"
},
"mocha": {
"bail": true,
"timeout": "100s",
"require": [
"esbuild-register",
"chai/register-assert",
"./lib/test/setupPorts",
"./lib/test/setupContains"
],
"spec": "lib/**/*-test.ts"
}
}