-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
57 lines (57 loc) · 1.28 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": "jest-environment-serverless",
"version": "0.2.4",
"author": "FireEye, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/fireeye/jest-environment-serverless"
},
"bugs": {
"url": "https://github.com/fireeye/jest-environment-serverless/issues"
},
"license": "SEE LICENSE IN LICENSE.txt",
"main": "src/index.js",
"keywords": [
"jest",
"serverless"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npx jest"
},
"dependencies": {
"lambda-wrapper": "^0.3.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-config": "^24.8.0",
"jest-runtime": "^24.8.0",
"jest-util": "^24.8.0",
"serverless": "^1.41.1"
},
"peerDependencies": {
"jest-environment-node": "23.x || 24.x",
"serverless": ">=1.46"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
],
"silent": true,
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/?(*.)+(spec|test).js?(x)",
"**/?(*.)+(spec|test).js?(x)"
],
"verbose": true
}
}