-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@khalidx/runbook",
"version": "0.7.0",
"description": "Executable markdown documents that you can run, template, and share!",
"license": "MIT",
"repository": "github:khalidx/runbook",
"main": "dist/index.js",
"bin": {
"runbook": "bin/cli.js",
"r": "bin/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "run-s build:node",
"build": "run-s build:node build:native",
"clean": "run-s build:node:clean build:native:clean",
"build:node:clean": "rimraf dist/",
"build:node:typescript": "tsc",
"build:node": "run-s build:node:*",
"build:native:clean": "rimraf exec/",
"build:native:binaries": "pkg dist/cli.js --out-path exec/",
"build:native": "run-s build:native:*",
"test": "mocha -r ts-node/register src/**/*.test.ts"
},
"files": [
"dist/",
"USAGE.md"
],
"dependencies": {
"@koa/router": "^10.1.1",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"handlebars": "^4.7.7",
"inquirer": "^8.2.0",
"inquirer-search-list": "^1.2.6",
"koa": "^2.13.4",
"omelette": "^0.4.17",
"rehype-sanitize": "^4.0.0",
"rehype-stringify": "^8.0.0",
"remark": "^13.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.1.0",
"shelljs": "^0.8.5",
"strip-ansi": "^6.0.1",
"tslib": "^2.3.1",
"unified": "^9.2.2",
"unist-util-visit": "^2.0.3",
"uuid": "^8.3.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/fs-extra": "^9.0.4",
"@types/inquirer": "^8.2.0",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.11",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.10",
"@types/omelette": "^0.4.1",
"@types/shelljs": "^0.8.8",
"@types/uuid": "^8.3.0",
"@types/yargs": "^15.0.11",
"chai": "^4.2.0",
"mocha": "^9.2.0",
"npm-run-all": "^4.1.5",
"pkg": "^4.4.9",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}