forked from davewasmer/devcert
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
117 lines (117 loc) · 3.2 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@mike-north/devcert-patched",
"version": "2.0.0",
"description": "Generate trusted local SSL/TLS certificates for local SSL development",
"main": "dist/src/index.js",
"types": "dist/devcert-patched.d.ts",
"scripts": {
"pretest": "yarn build:tests",
"test": "yarn lint && yarn test:qunit",
"test:qunit": "qunit test-js/**/*.test.js",
"build:tests": "tsc -b test",
"clean": "rimraf dist",
"build": "yarn clean && yarn build:ts && yarn build:api-extract && yarn build:api-docs",
"build:ts": "tsc",
"lint": "eslint . --ext ts",
"prepublishOnly": "yarn build",
"build:api-docs": "yarn api-documenter markdown -i ./temp -o ./docs",
"build:api-extract": "yarn api-extractor run"
},
"bin": {
"devcert": "bin/devcert.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike-north/devcert.git"
},
"keywords": [
"ssl",
"certificate",
"openssl",
"trust"
],
"author": {
"name": "Mike North",
"email": "michael.l.north@gmail.com",
"url": "https://mike.works"
},
"license": "MIT",
"contributors": [
{
"name": "Dave Wasmer"
}
],
"bugs": {
"url": "https://github.com/mike-north/devcert/issues"
},
"homepage": "https://github.com/mike-north/devcert#readme",
"devDependencies": {
"@microsoft/api-documenter": "^7.7.12",
"@microsoft/api-extractor": "^7.7.8",
"@types/command-exists": "^1.2.0",
"@types/configstore": "^4.0.0",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/execa": "^0.9.0",
"@types/express": "~4.17.6",
"@types/get-port": "^3.2.0",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.92",
"@types/mkdirp": "^1.0.1",
"@types/node": "10",
"@types/node-fetch": "~2.5.7",
"@types/node-forge": "^0.9.2",
"@types/qunit": "~2.11.1",
"@types/rimraf": "^3.0.0",
"@types/sinon": "^9.0.11",
"@types/systeminformation": "^3.54.1",
"@types/tmp": "^0.0.33",
"@types/yargs": "~16.0.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"node-fetch": "^2.6.0",
"prettier": "^1.19.1",
"qunit": "^2.10.0",
"sinon": "^9.2.4",
"standard-version": "^9.1.1",
"typescript": "^3.7.5"
},
"dependencies": {
"@mike-north/types": "^1.3.2",
"@types/date-fns": "^2.6.0",
"application-config-path": "^0.1.0",
"chalk": "^3.0.0",
"command-exists": "^1.2.4",
"configstore": "^5.0.1",
"date-fns": "^2.10.0",
"debug": "^4.3.1",
"eol": "^0.9.1",
"execa": "0.9.0",
"express": "^4.17.1",
"get-port": "^5.1.1",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"node-forge": "^0.10.0",
"password-prompt": "^1.0.4",
"rimraf": "^3.0.2",
"sudo-prompt": "^8.2.0",
"systeminformation": "^5.3.1",
"tmp": "^0.0.33",
"yargs": "^16.2.0"
},
"optionalDependencies": {},
"engines": {
"node": "10.* || >= 12.*"
},
"volta": {
"node": "10.24.0",
"yarn": "1.21.1"
}
}