-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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": "reporter-minimal",
"version": "0.0.1",
"description": "A minimal test reporter for node:test",
"keywords": [
"node:test",
"test",
"reporter",
"reporters"
],
"engines": {
"node": ">=18"
},
"files": [
"index.js"
],
"homepage": "https://github.com/barelyhuman/node-reporter-minimal/tree/main",
"bugs": {
"url": "https://github.com/barelyhuman/node-reporter-minimal/issues"
},
"repository": "https://github.com/barelyhuman/node-reporter-minimal.git",
"license": "MIT",
"author": "reaper <ahoy@barelyhuman.dev>",
"type": "commonjs",
"main": "index.js",
"scripts": {
"fix": "prettier --write .",
"next": "bumpp",
"package:lint": "publint",
"prepare": "husky",
"test": "node --test-reporter=spec --test-reporter-destination=stdout ./tests/*.test.js"
},
"lint-staged": {
"*.{js,cjs,css,md}": "prettier --write",
"*.json": "prettier --write"
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/node-snapshot": "^0.0.4-beta.1",
"@barelyhuman/prettier-config": "^1.1.0",
"bumpp": "^9.5.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"publint": "^0.2.10"
}
}