forked from hackmdio/hackmd-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.84 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
{
"name": "@hackmd/hackmd-cli",
"version": "2.0.2",
"author": "HackMD Team",
"bin": {
"hackmd-cli": "./bin/run"
},
"bugs": "https://github.com/hackmdio/hackmd-cli/issues",
"dependencies": {
"@hackmd/api": "^2.0.0",
"@oclif/core": "^1.3.6",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-version": "^1.0.4",
"cli-ux": "^5.4.4",
"fs-extra": "^8.1.0",
"lodash.defaults": "^4.2.0",
"oclif": "^2.5.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.2.7",
"@types/fs-extra": "^8.0.1",
"@types/lodash.defaults": "^4.2.6",
"@types/mocha": "^5.2.7",
"@types/node": "^17.0.21",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"globby": "^10.0.2",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/hackmdio/hackmd-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "hackmd-cli",
"topicSeparator": " ",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
]
},
"repository": "hackmdio/hackmd-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}