forked from ajmath/serverless-offline-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1023 Bytes
/
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
{
"name": "serverless-offline-scheduler",
"version": "0.5.0",
"description": "Serverless plugin to run scheduled lambdas with serverless offline",
"main": "index.js",
"author": "Andrew Matheny <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/ajmath/serverless-offline-scheduler.git"
},
"keywords": [
"serverless",
"1.0",
"es6",
"plugin",
"runtime"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ajmath/serverless-offline-scheduler/issues"
},
"homepage": "https://github.com/ajmath/serverless-offline-scheduler#readme",
"scripts": {
"lint": "eslint index.js tests/**/*.js lib/**/*.js",
"test": "yarn run lint && yarn run jest"
},
"dependencies": {
"node-schedule": "^1.2.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^27.0.4",
"serverless": "^2.44.0"
},
"peerDependencies": {},
"resolutions": {
"**/deep-extend": "~0.6.0",
"**/lodash": "~4.17.15"
}
}