-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "@codewars/jest-reporter",
"version": "1.0.3",
"description": "Codewars reporter for Jest",
"homepage": "https://github.com/codewars/jest-reporter#readme",
"repository": "github:codewars/jest-reporter",
"bugs": {
"url": "https://github.com/codewars/jest-reporter/issues"
},
"files": [
"lib/codewars-reporter.js",
"src/codewars-reporter.ts"
],
"main": "lib/codewars-reporter.js",
"scripts": {
"prepare": "tsc",
"watch": "tsc --watch",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"anser": "^1.4.9"
},
"devDependencies": {
"@jest/console": "^26.1.0",
"@jest/reporters": "^26.1.0",
"@jest/test-result": "^26.1.0",
"@types/jest": "^26.0.4",
"escape-string-regexp": "^4.0.0",
"execa": "^4.0.3",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.1.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"jest": ">=25.x"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}