48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
|
{
|
||
|
"name": "mkcert",
|
||
|
"version": "3.2.0",
|
||
|
"description": "Create Self Signed Development Certificates",
|
||
|
"main": "dist/mkcert.js",
|
||
|
"types": "dist/mkcert.d.ts",
|
||
|
"bin": {
|
||
|
"mkcert": "dist/cli.js"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "tsc",
|
||
|
"clean": "rm -rf dist",
|
||
|
"dev": "npm run clean && npm run build -- --watch",
|
||
|
"prepublishOnly": "npm run clean && npm run build",
|
||
|
"prettier": "prettier src tests --write",
|
||
|
"test": "jest"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=16"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/Subash/mkcert.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"signed",
|
||
|
"certificate",
|
||
|
"cert"
|
||
|
],
|
||
|
"author": "Subash Pathak",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/Subash/mkcert/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/Subash/mkcert#readme",
|
||
|
"dependencies": {
|
||
|
"commander": "^11.0.0",
|
||
|
"node-forge": "^1.3.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node-forge": "^1.3.4",
|
||
|
"jest": "^29.6.4",
|
||
|
"prettier": "^3.0.2",
|
||
|
"ts-jest": "^29.1.1",
|
||
|
"typescript": "^5.1.6"
|
||
|
}
|
||
|
}
|