-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "husher",
"version": "0.2.6",
"main": "./build/Husher.js",
"license": "MIT",
"author": "feedox",
"scripts": {
"format": "prettier --config .prettierrc 'src/**/*.ts' 'tests/**/*.ts' --write",
"build": "tsc",
"watch": "tsc -w",
"main": "node build/Main.js",
"test": "jest",
"test:debug": "node --inspect ./node_modules/jest/bin/jest.js --runInBand --colors --verbose",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura --coverageReporters=html",
"bump": "./bump.sh"
},
"bin": {
"husher": "bin/cli.sh"
},
"files": [
"bin/**",
"build/**",
"dist/**",
"src/**",
"*.js",
"*.ts"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.2",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-junit-reporter": "^1.1.0",
"prettier": "^3.2.2",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "build/test_reports",
"output": "./.tmp/test/TEST-RESULTS.xml",
"classNameTemplate": "{classname} - {title}",
"titleTemplate": "{classname} - {title}",
"ancestorSeparator": " > ",
"usePathForSuiteName": "true"
}
}