UNPKG

make-cert

Version:

Quickly generate a self-signed cert to start an HTTPS server

48 lines (47 loc) 1.08 kB
{ "name": "make-cert", "version": "1.2.1", "description": "Quickly generate a self-signed cert to start an HTTPS server", "keywords": [ "SSL", "HTTPS", "certificate" ], "homepage": "https://github.com/vinsonchuong/make-cert", "bugs": "https://github.com/vinsonchuong/make-cert/issues", "license": "MIT", "author": "Vinson Chuong <vinsonchuong@gmail.com>", "repository": "vinsonchuong/make-cert", "scripts": { "test": "xo && ava", "release": "semantic-release" }, "bin": { "make-cert": "./make-cert.js" }, "dependencies": { "node-forge": "^0.10.0" }, "devDependencies": { "ava": "^3.15.0", "got": "^11.8.2", "semantic-release": "^17.4.2", "tempy": "^1.0.0", "xo": "^0.38.2" }, "ava": { "verbose": true, "timeout": "2m" }, "xo": { "prettier": true, "space": 2, "semicolon": false, "rules": { "import/extensions": "off", "import/no-anonymous-default-export": "off", "import/no-useless-path-segments": "off", "unicorn/import-index": "off" } } }