-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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": "appsync-cognito-query",
"version": "0.1.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "A plugin to make easier the queries to appsync with a cognito auth user pool",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint && npm run ci",
"preversion": "npm run lint && npm run ci",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"cover": "jest --coverage --config jestconfig.json && cat ./coverage/lcov.info | coveralls",
"ci": "npm run lint && npm run build && npm run cover"
},
"contributes": {},
"repository": "git@github.com:gdaguilarc/appsync-cognito-query.git",
"author": "David Aguilar <gd.aguilarc@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@types/istanbul": "^0.4.30",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@types/node-fetch": "^2.3.7",
"@types/uuid": "^3.4.5",
"coveralls": "^3.0.4",
"istanbul": "^0.4.5",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2",
"uuid": "^3.3.2"
},
"files": [
"lib/**/*"
],
"keywords": [
"cognito",
"appsync",
"auth",
"aws",
"Cognito",
"Appsync",
"query"
],
"dependencies": {
"amazon-cognito-identity-js": "^3.0.13",
"graphql-request": "^1.8.2",
"node-fetch": "^2.6.0"
}
}