-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.15 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.15 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
{
"name": "appsync-client",
"description": "A lightweight Appsync client that signs requests for you - designed to be run server-side (e.g. on Lambdas).",
"keywords": [
"appsync",
"graphql",
"client",
"aws",
"server",
"server-side",
"lambda",
"lightweight",
"signature 4",
"sig4",
"signed"
],
"repository": "https://github.com/skyhookadventure/appsync-client.git",
"license": "MIT",
"version": "2.16.0",
"main": "dist/AppsyncClient.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w ",
"test": "./node_modules/.bin/jest",
"coverage": "./node_modules/.bin/jest --collect-coverage",
"lint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"bump": "./node_modules/.bin/versiony package.json --minor"
},
"devDependencies": {
"@graphql-typed-document-node/core": "^3.1.0",
"@types/aws4": "^1.5.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "~4.1.2",
"versiony-cli": "^1.3.0"
},
"jest": {
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node"
},
"dependencies": {
"aws4": "^1.11.0",
"fake-tag": "^2.0.0",
"graphql": "^15.4.0"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"airbnb-typescript/base",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"prettier/prettier": "error",
"no-new": "off"
}
}
}