-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 959 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
45
46
47
48
{
"name": "jest-to-log",
"description": "Test log messages with jest",
"version": "1.1.0",
"author": "Kaung Zin Hein (https://www.kaungzinhein.me/)",
"license": "MIT",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"engines": {
"node": ">=16.11.0"
},
"scripts": {
"test": "jest",
"test:ci": "jest --ci",
"test:w": "jest --watch",
"check:tar": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz"
},
"files": [
"/src",
"CHANGELOG.md"
],
"keywords": [
"assertions",
"matchers",
"testing",
"console",
"process",
"stdout",
"stderr",
"error",
"warn",
"test",
"jest",
"unit",
"log"
],
"devDependencies": {
"jest": "^29.7.0",
"scope-logger": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Zen-cronic/jest-to-log.git"
},
"bugs": {
"url": "https://github.com/Zen-cronic/jest-to-log/issues"
}
}