-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "gutenvox",
"description": "find the top project gutenberg books that have no librivox recording",
"version": "0.0.3",
"bin": "dist/index.js",
"license": "MIT",
"type": "module",
"scripts": {
"build": "node scripts/build.mjs",
"clean": "del dist",
"coverage": "node --experimental-modules=true --experimental-test-coverage=true --test-reporter=lcov --test-reporter-destination=lcov.info --loader=tsm --test tst/*.test.ts",
"smoke-test": "node dist/index.js -v --search=dickens --limit=2",
"make-executable": "chmod +x dist/index.js",
"test": "node --experimental-modules=true --loader=tsm --test tst/*.test.ts",
"typecheck": "tsc --project tsconfig.json"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/node-fetch-cache": "^3.0.5",
"esmock": "^2.7.3",
"tsm": "^2.3.0"
},
"dependencies": {
"del-cli": "^7.0.0",
"esbuild": "^0.27.2",
"node-fetch-cache": "^5.1.0",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0",
"repository": {
"type": "git",
"url": "https://github.com/doug-wade/gutenvox"
},
"files": [
"dist/"
]
}