-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.88 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "rakosh",
"version": "0.17.0",
"description": "yet another knowledge base system -- this time with nuggets",
"author": "Duncan Rance",
"license": "MIT",
"type": "module",
"bin": "./cli/main.js",
"engines": {
"node": ">=16"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": ">= 2.1.2 < 5",
"chai-as-promised": "^7",
"eslint": "^8",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-n": "^16",
"eslint-plugin-promise": "^6",
"eslint-plugin-react": "^7",
"mocha": "^10.2.0",
"react": "^18.2.0",
"testdouble": "^3.20.1"
},
"dependencies": {
"@shogobg/markdown2confluence": "^0",
"arangojs": "^8",
"formdata-node": "^6.0.3",
"front-matter": "^4.0.2",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"lorem-ipsum": "^2.0.8",
"markdown-toc": "^1.2.0",
"markdown-truncate": "^1.1.1",
"markdownlint": "^0",
"marked": "^5.0.0",
"marked-terminal": "^5.2.0",
"md-to-adf-orval": "github:orval/md-to-adf-orval",
"mustache": "^4.2.0",
"ncp": "^2.0.0",
"node-fetch": "^3",
"prompts": "^2.4.2",
"puppeteer": "^22.15.0",
"rehype-document": "^7.0.3",
"rehype-format": "^5.0.0",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-directive": "^3",
"remark-gfm": "^4",
"remark-parse": "^11",
"remark-rehype": "^11.1.0",
"remark-stringify": "^11",
"simple-statistics": "^7.8.3",
"slackify-markdown": "^4.4.0",
"slugify": "^1.6.6",
"tree-model": "^1.0.7",
"unified": "^11.0.4",
"unist-util-visit-parents": "^6",
"uuid": "^9",
"yargs": "^17"
},
"scripts": {
"lint": "eslint cli",
"devdep": "./cli/main.js deposit examples/my-mine -r -v",
"devext": "./cli/main.js gatsby my-mine examples/my-mine/cust-dev.json heap --no-build -v -m 3",
"devpdf": "./cli/main.js pdf my-mine -v",
"devhtm": "./cli/main.js html my-mine -v",
"devtre": "./cli/main.js tree my-mine treeout -v -i 'guide:*'",
"devslk": "./cli/main.js slack my-mine -v",
"docdep": "./cli/main.js deposit docs -r -v",
"docext": "./cli/main.js gatsby docs docs/cust-dev.json heap --no-build -v",
"docpdf": "./cli/main.js pdf docs -v",
"dochtm": "./cli/main.js html docs -v",
"doccon": "./cli/main.js confluence docs orval2 rakosh 131293 -v",
"devcon": "./cli/main.js confluence my-mine orval2 test 917514 -v --exclude poodle:wibble",
"fsadd": "./cli/main.js fs -v add",
"fslint": "./cli/main.js fs -v lint",
"test": "NODE_NO_WARNINGS=1 mocha --loader=testdouble",
"test:cov": "NODE_NO_WARNINGS=1 c8 mocha --loader=testdouble && c8 report --reporter=text-lcov > coverage/lcov.info",
"test:cov:one": "NODE_NO_WARNINGS=1 c8 mocha --loader=testdouble"
},
"packageManager": "yarn@4.9.2"
}