-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 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
{
"name": "jest-progress-bar-reporter",
"version": "1.0.26",
"description": "Progress bar reporter for Jest",
"main": "./lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"jest": "jest",
"test": "npm run jest && npm run lint",
"lint": "eslint --cache --color --ext .jsx,.js lib example",
"example": "cd example/ && jest",
"prettier": "prettier --write \"**/*.js\"",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pierreroth64/jest-progress-bar-reporter.git"
},
"keywords": [
"jest",
"dot",
"reporter"
],
"author": "Peio Roth",
"license": "MIT",
"bugs": {
"url": "https://github.com/pierreroth64/jest-progress-bar-reporter/issues"
},
"homepage": "https://github.com/pierreroth64/jest-progress-bar-reporter#readme",
"dependencies": {
"chalk": "4.1.1",
"moment": "^2.29.4",
"progress": "2.0.3"
},
"devDependencies": {
"eslint": "7.28.0",
"eslint-config-arpinum": "5.0.0",
"eslint-plugin-jest": "24.3.6",
"jest": "27.0.4",
"prettier": "2.3.1"
},
"jest": {
"testURL": "http://localhost/",
"testPathIgnorePatterns": [
"/node_modules/",
"/example/"
]
}
}