-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.22 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.22 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
63
64
{
"name": "@voxpelli/node-module-template",
"version": "0.0.0",
"description": "A GitHub template repo for node modules",
"homepage": "http://github.com/voxpelli/node-module-template",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-module-template.git"
},
"keywords": [],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24",
"typescript": ">=5.8"
},
"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-type-tests": "run-s build && tstyche --target \"$(node -p \"require('./package.json').engines.typescript\")\" --reporters list,summary && run-s clean",
"check:installed-check": "installed-check -i tstyche",
"check:knip": "knip",
"check:lint": "eslint",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 99 --ignore-files 'test/*'",
"check": "run-s clean && run-p check:* --continue-on-error && run-s check-type-tests",
"clean:declarations-top": "rm -f $(find . -maxdepth 1 -type f -name '*.d.ts*' ! -name 'index.d.ts')",
"clean:declarations-lib": "rm -f $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts' 2>/dev/null || true)",
"clean": "run-p clean:*",
"husky-enable": "husky",
"husky-disable": "git config --unset core.hooksPath",
"prepublishOnly": "run-s build",
"test:node": "c8 --reporter=lcov --reporter=text node --test",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"devDependencies": {
"@types/node": "^20.19.37",
"@voxpelli/eslint-config": "^23.0.0",
"@voxpelli/tsconfig": "^16.1.0",
"@voxpelli/typed-utils": "^4.0.0",
"c8": "^11.0.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"installed-check": "^10.0.1",
"knip": "^5.86.0",
"npm-run-all2": "^8.0.4",
"tstyche": "^6.2.0",
"type-coverage": "^2.29.7",
"typescript": "~5.9.3"
}
}