-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1015 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1015 Bytes
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
{
"name": "openssl-web-development",
"version": "1.4.0",
"description": "Simply create OpenSSL certificates for your local development",
"keywords": [
"openssl",
"development",
"website"
],
"homepage": "https://github.com/m8finder/openssl-web-development",
"repository": {
"type": "git",
"url": "https://github.com/m8finder/openssl-web-development.git"
},
"license": "MIT",
"author": {
"name": "M8FINDER",
"email": "development@m8finder.net",
"url": "https://www.m8finder.net/"
},
"bin": {
"webssl": "./cli.js"
},
"main": "./openssl.js",
"scripts": {
"test-cli": "node ./cli.js -c ./test/",
"test": "eslint",
"help": "node cli.js --help"
},
"dependencies": {
"chalk": "^2.4.2",
"cosmiconfig": "^5.2.0",
"execa": "^1.0.0",
"ini": "^1.3.5",
"meow": "^5.0.0",
"ora": "^3.4.0"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0"
}
}