-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (61 loc) · 2.14 KB
/
package.json
File metadata and controls
62 lines (61 loc) · 2.14 KB
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
53
54
55
56
57
58
59
60
61
62
{
"name": "@userfrosting/ts-log-adapter-ava",
"version": "0.1.1",
"description": "Plug ava test logging into ts-log compatible logging interfaces.",
"funding": "https://opencollective.com/userfrosting",
"type": "module",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"compile": "rm -rf ./dist && tsc",
"pretest": "pnpm run compile && api-extractor run --local",
"test": "c8 --all --reporter=text --reporter=lcovonly ava",
"prepublishOnly": "pnpm run compile",
"preversion": "pnpm test",
"version": "pnpm run version:apiDocRefresh && pnpm run version:changelogBump",
"postversion": "git push && git push --tags",
"version:changelogBump": "changelog-updater && git add CHANGELOG.md",
"version:apiDocRefresh": "api-extractor run && api-documenter markdown -i ./temp -o ./docs/api && git add ./docs/api/*",
"release-readiness": "pnpm run release-readiness:cspell && pnpm run release-readiness:api-changes",
"release-readiness:cspell": "cspell 'src/**' 'dist/**' 'docs/**' '*'",
"release-readiness:api-changes": "pnpm run compile && api-extractor run"
},
"author": "Jordan Mele <SiliconSoldier@outlook.com.au> (https://djmm.me/)",
"license": "MIT",
"keywords": [
"ts-log",
"logger",
"ava",
"avajs"
],
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/ts-log-adapter-ava"
},
"bugs": {
"url": "https://github.com/userfrosting/ts-log-adapter-ava/issues"
},
"dependencies": {
"ts-log": "^3.0.0"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.21.4",
"@microsoft/api-extractor": "^7.34.3",
"@types/node": "^25.0.2",
"ava": "^7.0.0",
"c8": "^11.0.0",
"changelog-updater": "^2.0.1",
"cspell": "^10.0.0",
"is-npm-cli": "^2.0.0",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.0",
"ava": {
"files": [
"dist/**/*.test.js"
]
}
}