-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.61 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": "ts-junit",
"private": true,
"version": "1.0.19",
"description": "use junit decorator with typescript",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"start": "pnpm build && ts-node ./samples/run.ts",
"watch": "pnpm -r run watch",
"build": "pnpm -r run build",
"clean": "pnpm -r run clean",
"test": "pnpm -r run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm release:only",
"release:only": "changeset publish --registry=https://registry.npmjs.com/",
"format": "pnpm _phase:fmt --write",
"lint": "pnpm _phase:lint --fix",
"check": "pnpm _phase:fmt --check && pnpm _phase:lint && pnpm _phase:cspell",
"ci": "pnpm _phase:fmt --no-color --check && pnpm _phase:lint --no-color && pnpm _phase:cspell --no-color",
"_phase:fmt": "prettier \"**/*.{js,ts,md}\" --loglevel=warn",
"_phase:lint": "eslint \"**/*.{js,ts}\"",
"_phase:cspell": "cspell \"**/*.{js,ts,md,json}\" --no-progress"
},
"dependencies": {
"@ts-junit/core": "workspace:*",
"uvu": "^0.5.6"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"cspell": "^6.12.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"author": "i5ting",
"license": "MIT"
}