forked from CacherApp/cacher-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.98 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.98 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
{
"name": "@cacherapp/cli",
"description": "The command line interface to Cacher.",
"version": "1.0.10",
"author": "Penguin Labs, LLC",
"bin": {
"cacher": "./bin/run"
},
"bugs": "https://github.com/cacherapp/cacher-cli/issues",
"dependencies": {
"@cacherapp/run-server": "^1.0.5",
"@oclif/command": "^1.5.8",
"@oclif/config": "^1.12.0",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-help": "^2.1.4",
"atob": ">=2.1.0",
"chalk": "^2.3.2",
"clipboardy": "^1.2.3",
"cryptiles": ">=4.1.2",
"diff": ">=3.5.0",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"globby": "^8.0.1",
"inquirer": "^5.1.0",
"lodash.template": ">=4.5.0",
"node-notifier": "^5.2.1",
"opn": "^5.3.0",
"ora": "^2.0.0",
"request": "^2.88.0",
"semver": "^5.5.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.0",
"@oclif/tslint": "^3.1.1",
"@types/node": "^10.12.18",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"homepage": "https://github.com/cacherapp/cacher-cli",
"keywords": [
"cacher",
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "cacher",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"run-server": {
"description": "use to run snippets locally"
},
"setup": {
"description": "configure cacher credentials"
},
"snippets": {
"description": "commands for library snippets"
}
}
},
"repository": "cacherapp/cacher-cli",
"scripts": {
"build": "rm -rf lib && tsc",
"clean": "rm -f .oclif.manifest.json",
"postpublish": "npm run clean",
"prepublishOnly": "npm run build && oclif-dev manifest",
"preversion": "npm run clean",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}