-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "@hackbg/ensuite",
"type": "module",
"main": "ensuite.mjs",
"types": "ensuite.d.ts",
"version": "2.0.0",
"description": "Literate test runner. Write tests in Markdown code blocks. Supports TypeScript without Babel.",
"files": ["README.md", "*.mjs"],
"bin": {
"ensuite": "ensuite.cli.mjs",
"ensuite-cov": "ensuite-cov.cli.mjs",
"ensuite-dev": "ensuite-dev.cli.mjs",
"ensuite-render": "ensuite-render.cli.mjs",
"ensuite-reload": "ensuite-reload.cli.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/hackbg/ensuite"
},
"scripts": {
"check": "tsc --noEmit",
"test": "./ensuite.cli.mjs ensuite.test.mjs",
"cov": "./ensuite-cov.cli.mjs ensuite.test.mjs",
"release": "pnpm check && pnpm cov all && ubik release --access public --otp 123123"
},
"dependencies": {
"@hackbg/file": "^2.0.2",
"@ganesha/esbuild": "workspace:^1",
"@hackbg/logs": "^3",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^13.0.7",
"c8": "^7.14.0",
"glob": "^9.3.5",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7",
"markdown-it-highlightjs": "^4.0.1",
"markdown-it-table-of-contents": "^0.6.0",
"pug": "^3.0.2",
"typescript": "~5.3.3",
"why-is-node-still-running": "^1.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@hackbg/ubik": "^2.0.8"
}
}