-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "txm",
"version": "8.2.0",
"description": "tool for testing code examples in Markdown files",
"type": "module",
"exports": "./src/main.js",
"scripts": {
"test": "npm run-script test-docs && npm run-script test-code",
"test-code": "lsc test.ls",
"test-docs": "node src/cli.js readme.markdown",
"test-with-coverage": "c8 npm run-script test-code"
},
"bin": {
"txm": "src/cli.js"
},
"author": "Anko",
"homepage": "https://github.com/anko/txm",
"repository": {
"type": "git",
"url": "https://github.com/anko/txm"
},
"bugs": "https://github.com/anko/txm/issues",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"files": [
"src",
"readme.markdown"
],
"keywords": [
"markdown",
"test",
"example",
"readme",
"comment",
"tap"
],
"dependencies": {
"async": "^3.2.1",
"diff-match-patch": "^1.0.5",
"kleur": "^4.1.4",
"remark-parse": "^10.0.1",
"supports-color": "^9.1.0",
"unified": "^10.1.1"
},
"devDependencies": {
"c8": "^8.0.0",
"livescript": "^1.6.0",
"tape": "^5.3.1",
"tmp": "^0.2.1"
}
}