generated from voxpelli/node-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@voxpelli/node-test-pretty-reporter",
"version": "1.1.2",
"description": "Reporter for node:test that supports colorful diffs etc",
"homepage": "http://github.com/voxpelli/node-test-pretty-reporter",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-test-pretty-reporter.git"
},
"keywords": [
"node:test"
],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"/index.js",
"/index.d.ts",
"/index.d.ts.map",
"lib/*.js",
"lib/*.d.ts",
"lib/*.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check -i @voxpelli/eslint-config -i eslint -i knip -i installed-check",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'",
"check": "run-s clean && run-p check:*",
"clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'advanced-types.d.ts' ! -name 'index.d.ts')",
"clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name 'advanced-types.d.ts')",
"clean": "run-p clean:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:0-main": "c8 --reporter=lcov --reporter text node --test",
"test:1-reporter": "node --test --test-reporter=./index.js",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"devDependencies": {
"@types/node": "^18.19.40",
"@voxpelli/eslint-config": "^22.1.0",
"@voxpelli/tsconfig": "^12.0.1",
"c8": "^10.1.2",
"eslint": "^9.7.0",
"husky": "^9.0.11",
"installed-check": "^9.3.0",
"knip": "^5.26.0",
"npm-run-all2": "^6.2.0",
"type-coverage": "^2.29.1",
"typescript": "~5.5.3",
"validate-conventional-commit": "^1.0.4"
},
"dependencies": {
"clean-stack": "^5.2.0",
"jest-diff": "^29.7.0",
"markdown-or-chalk": "^0.2.0"
}
}