-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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": "ts-scaffold",
"version": "0.3.0",
"src/main": "index.ts",
"license": "MIT",
"author": "",
"scripts": {
"format": "prettier --config .prettierrc 'src/**/*.ts' 'tests/**/*.ts' --write",
"build": "tsc",
"watch": "tsc -w",
"main": "node build/index.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": {
"cli": "bin/cli.ts"
},
"files": [
"bin/**",
"build/**",
"dist/**",
"src/**",
"*.js",
"*.ts"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.7.9",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-junit-reporter": "^1.1.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.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"
}
}