This repository was archived by the owner on Sep 28, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "@nlib/tsm",
"description": "Thin .ts/.mts loader & test runner",
"publishConfig": {
"access": "public"
},
"version": "1.1.0",
"license": "Apache-2.0",
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://gojabako.zone"
},
"homepage": "https://github.com/nlibjs/tsm",
"repository": "https://github.com/nlibjs/tsm",
"engines": {
"node": ">=18"
},
"type": "module",
"files": [
"loader.mjs",
"register.mjs"
],
"main": "./register.mjs",
"bin": {
"tsm-test": "./test.mjs"
},
"scripts": {
"lint": "biome lint",
"test": "run-s test:*",
"test:directory": "node test.mjs test/directory",
"test:pattern": "node test.mjs \"test/directory/**/*.test.mts\"",
"test:file": "node test.mjs \"test/directory/add.test.mts\"",
"test:exclude": "node test.mjs --exclude \"**/excluded\" -- test/exclude",
"test:coverage-off": "node test.mjs --nocoverage test/coverage-off",
"test:coverage-on": "node test.mjs --coverage test/coverage-on",
"test:cjs1": "node test.mjs test/bin/cjs1",
"test:cjs2": "node test.mjs test/bin/cjs2",
"test:mjs1": "node test.mjs test/bin/mjs1",
"test:mjs2": "node test.mjs test/bin/mjs2",
"version": "npx @nlib/changelog --output CHANGELOG.md && git add CHANGELOG.md"
},
"dependencies": {
"commander": "13.1.0",
"esbuild": "0.25.10",
"micromatch": "4.0.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.18.6",
"npm-run-all": "4.1.5"
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}