@denis-kalinin/dev-certs
Version:
Managing certificates on nodejs http server
78 lines (77 loc) • 2.19 kB
JSON
{
"name": "@denis-kalinin/dev-certs",
"version": "1.11.10",
"description": "Managing certificates on nodejs http server",
"main": "./lib/main.js",
"engines": {
"node": ">=15.6"
},
"scripts": {
"build": "rimraf lib && concurrently \"tsc -p tsconfig.json\"",
"cli": "node lib/cli.js",
"lint": "office-addin-lint check",
"lint:fix": "office-addin-lint fix",
"prettier": "office-addin-lint prettier",
"start": "rimraf lib && concurrently \"npm run watch\"",
"test": "mocha -r ts-node/register test/**/*.ts",
"livetest": "ts-mocha test/livetest.ts",
"watch": "tsc -p tsconfig.json -w",
"version": "npm run build",
"postversion": "git push origin master && git push origin v%npm_package_version% || git push origin v${npm_package_version}",
"requirements-check": "node check-node-version.mjs",
"postinstall": "npm run requirements-check"
},
"author": "Denis Kalinin",
"license": "MIT",
"bin": {
"@denis-kalinin/dev-certs": "./cli.js"
},
"keywords": [
"Office",
"add-in",
"localhost",
"SSL",
"https",
"certificates",
"keys",
"cert",
"development",
"secure",
"server"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^6.2.0",
"fs-extra": "^7.0.1",
"mkcert": "^1.4.0",
"office-addin-cli": "^1.5.7",
"office-addin-usage-data": "^1.6.7"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/fs-extra": "^5.1.0",
"@types/mkcert": "^1.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^15.6",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"concurrently": "^6.2.2",
"cross-env": "^7.0.3",
"mocha": "^9.1.1",
"office-addin-lint": "^2.2.7",
"rimraf": "^3.0.2",
"semver": "^7.5.4",
"sinon": "^7.5.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/denis-kalinin/dev-certs"
},
"bugs": {
"url": "https://github.com/denis-kalinin/dev-certs/issues"
}
}