forked from minervas/scheduled-serverless-fn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 997 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
{
"name": "scheduled-serverless-fn",
"version": "1.0.0",
"description": "This repository demonstrates how to use the Serverless Framework create a AWS lambda function that is executed on a schedule.",
"main": "entrypoint.js",
"scripts": {
"test": "npx jest --config=./jest.config.js",
"lint": "npx eslint ./**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minervas/scheduled-serverless-fn.git"
},
"keywords": [
"serverless",
"lambda",
"scheduled"
],
"author": "Joshua Holmgren",
"license": "MIT",
"bugs": {
"url": "https://github.com/minervas/scheduled-serverless-fn/issues"
},
"homepage": "https://github.com/minervas/scheduled-serverless-fn#readme",
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"serverless": "^1.41.1"
}
}