-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "serverless-appsync-offline",
"version": "1.4.0",
"description": "Serverless AWS AppSync Offline Plugin - Allow to run AppSync locally for serverless framework",
"main": "index.js",
"engines": {
"node": ">=8"
},
"repository": "git@github.com:aheissenberger/serverless-appsync-offline.git",
"author": "Andreas Heissenberger <andreas@heissenberger.at>",
"license": "MIT",
"keywords": [
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"dynamodb",
"dynamodb local",
"aws",
"aws lambda",
"aws dynamodb",
"amazon",
"amazon web services",
"serverless.com"
],
"scripts": {
"test": "jest --no-cache"
},
"dependencies": {
"@conduitvc/appsync-emulator-serverless": "^0.14.5",
"aws-sdk": "^2.559.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"husky": "^3.0.9",
"jest": "^24.9.0"
},
"husky": {
"hooks": {
"pre-push": "yarn jest --ci --silent"
}
}
}