-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 838 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 838 Bytes
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
{
"name": "wf2ls",
"version": "0.26.0",
"description": "A tool to help convert Workflowy backup JSON into LogSeq friendly markdown files",
"main": "src/wf2ls.js",
"scripts": {
"cli-convert": "node ./src/wf2ls.js",
"test": "mocha",
"test-watch": "mocha --watch --parallel --require mocha-suppress-logs"
},
"type": "module",
"keywords": [
"workflowy",
"logseq"
],
"author": "Brian Clements-Tiberio <brian@c-t.dev> (https://brian.c-t.dev/)",
"license": "MIT",
"dependencies": {
"chai": "^5.1.2",
"chai-files": "^1.4.0",
"cli-progress": "^3.12.0",
"libphonenumber-js": "^1.11.20",
"linkify-html": "^4.2.0",
"linkifyjs": "^4.2.0",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"mocha": "^11.0.1",
"mocha-suppress-logs": "^0.5.1",
"turndown": "^7.2.0"
}
}