-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 837 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 837 Bytes
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
{
"name": "faas-test",
"version": "1.0.0",
"description": "FaaS-Test is a collection of functions to test FaaS code for resource usage issues. It can be used during unit or integration testing and may be included when deploying a function to a FaaS provider.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/lukasklinger/faas-test.git"
},
"author": "Lukas Klinger <lukas.klinger@gmail.com> (https://lukasklinger.com)",
"license": "MIT",
"bugs": "https://github.com/lukasklinger/faas-test/issues",
"homepage": "https://github.com/lukasklinger/faas-test",
"keywords": [
"faas",
"aws lambda",
"testing",
"testing framework"
],
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"jest": "^25.3.0"
}
}