-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 912 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
41
42
43
44
{
"name": "smack-my-jasmine-up",
"version": "0.2.1",
"description": "A hacky code that allows getting test case names from Jest / Jasmine tests.",
"keywords": [
"hack",
"test",
"jasmine",
"jest"
],
"main": "src/main/index.js",
"scripts": {
"test": "./node_modules/jest/bin/jest.js"
},
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/Jezorko/smack-my-jasmine-up"
},
"devDependencies": {
"jest": "^29.7.0",
"@types/jasmine": "^5.1.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules",
"coverage",
"src/test"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 65,
"functions": 87,
"lines": 90
}
}
}
}