-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "devcert-cli",
"description": "A CLI wrapper for devcert, to manage development SSL/TLS certificates and domains",
"version": "1.0.0",
"author": "Dave Wasmer @davewasmer",
"bin": {
"devcert": "./bin/run"
},
"bugs": "https://github.com/davewasmer/devcert-cli/issues",
"dependencies": {
"@oclif/command": "^1.4.6",
"@oclif/config": "^1.3.62",
"@oclif/plugin-help": "^1.2.2",
"devcert": "^1.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.4.4",
"@oclif/tslint": "^1.0.2",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.2",
"globby": "^8.0.1",
"ts-node": "5",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"homepage": "https://github.com/davewasmer/devcert-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "devcert",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "davewasmer/devcert-cli",
"scripts": {
"build": "rm -rf lib && tsc",
"clean": "rm -f .oclif.manifest.json",
"lint": "tsc -p . --noEmit && tslint -p . -t stylish",
"postpublish": "yarn run clean",
"posttest": "yarn run lint",
"prepublishOnly": "yarn run build && oclif-dev manifest",
"preversion": "yarn run clean",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}