UNPKG

surge-auth-generator

Version:

Generate AUTH files for basic authentication in surge.sh projects

60 lines (59 loc) 1.71 kB
{ "name": "surge-auth-generator", "version": "1.0.7", "description": "Generate AUTH files for basic authentication in surge.sh projects", "author": "Laurens Deprost", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "jest --config jestconfig.json", "test-cov": "jest --config jestconfig.json && codecov", "build": "tsc", "docs": "typedoc --theme markdown --readme none --mode file", "format": "prettier --write \"src/**/*.{ts,js}\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "version": "npm run format && npm run docs git add -A src docs", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/laudep/surge-auth-generator.git" }, "files": [ "lib/**/*" ], "keywords": [ "surge", "surge.sh", "auth", "authentication" ], "license": "MIT", "bugs": { "url": "https://github.com/laudep/surge-auth-generator/issues" }, "homepage": "https://github.com/laudep/surge-auth-generator#readme", "devDependencies": { "@types/app-root-path": "^1.2.4", "@types/jest": "^26.0.10", "@types/node": "^14.6.0", "del": "^5.1.0", "jest": "^26.4.1", "prettier": "^2.0.5", "ts-jest": "^26.2.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typedoc": "^0.18.0", "typedoc-plugin-markdown": "^2.4.1", "typescript": "^4.0.2" }, "dependencies": { "app-root-path": "^3.0.0", "is-valid-path": "^0.1.1" }, "engines": { "node": ">=10.12.0" } }