-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "devcert",
"version": "1.2.2",
"description": "Generate trusted local SSL/TLS certificates for local SSL development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Ha.\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davewasmer/devcert.git"
},
"keywords": [
"ssl",
"certificate",
"openssl",
"trust"
],
"author": "Dave Wasmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/davewasmer/devcert/issues"
},
"homepage": "https://github.com/davewasmer/devcert#readme",
"devDependencies": {
"standard-version": "^9.5.0",
"typescript": "4.3.2"
},
"dependencies": {
"@types/configstore": "^2.1.1",
"@types/debug": "^0.0.30",
"@types/get-port": "^3.2.0",
"@types/glob": "^5.0.34",
"@types/lodash": "^4.14.92",
"@types/mkdirp": "^0.5.2",
"@types/node": "^8.5.7",
"@types/rimraf": "^2.0.2",
"@types/tmp": "^0.0.33",
"application-config-path": "^0.1.0",
"command-exists": "^1.2.4",
"debug": "^3.1.0",
"eol": "^0.9.1",
"get-port": "^3.2.0",
"glob": "^7.1.2",
"is-valid-domain": "^0.1.6",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"password-prompt": "^1.0.4",
"rimraf": "^2.6.2",
"sudo-prompt": "^8.2.0",
"tmp": "^0.0.33",
"tslib": "^1.10.0"
}
}