-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 791 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 791 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@klipitkas/await-to",
"version": "0.1.0",
"description": "Solve the try-catch hell using golang style error handling.",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest"
},
"files": ["*"],
"author": "",
"license": "ISC",
"dependencies": {
"jest": "^27.2.1"
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test))\\.(js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}
}