UNPKG

ngmeta

Version:

A tool for updating meta tags in an Angular application.

63 lines (62 loc) 1.98 kB
{ "name": "ngmeta", "version": "13.0.0", "description": "A tool for updating meta tags in an Angular application.", "main": "dist/index.js", "typings": "dist/index.d.ts", "scripts": { "build": "rimraf ./dist && ngc", "docs": "typedoc --out docs/ --exclude **/*.spec.ts src/", "lint": "gts lint", "prepare": "npm run build", "release:major": "changelog -M && git add . && git commit -m 'chore(release): major version release' && npm version major && git push origin && git push origin --tags", "release:minor": "changelog -m && git add . && git commit -m 'chore(release): minor version release' && npm version minor && git push origin && git push origin --tags", "release:patch": "changelog -p && git add . && git commit -m 'chore(release): patch version release' && npm version patch && git push origin && git push origin --tags", "test": "echo \"no tests yet\"" }, "repository": { "type": "git", "url": "git+https://github.com/MichaelSolati/ngmeta.git" }, "keywords": [ "angular", "ng", "meta", "tags", "seo" ], "author": "Michael Solati <mkslt04@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/MichaelSolati/ngmeta/issues" }, "homepage": "https://ngmeta.otta.dev", "files": [ "dist/**", "CHANGELOG.md", "LICENSE.md", "package-lock.json", "package.json", "README.md" ], "peerDependencies": { "@angular/common": "^13.0.0", "@angular/core": "^13.0.0", "@angular/platform-browser": "^13.0.0", "rxjs": "^7.4.0" }, "devDependencies": { "@angular/common": "^13.0.0", "@angular/compiler": "^13.0.0", "@angular/compiler-cli": "^13.0.0", "@angular/core": "^13.0.0", "@angular/platform-browser": "^13.0.0", "@types/node": "^14.11.2", "generate-changelog": "~1.8.0", "rimraf": "^3.0.2", "rxjs": "^7.4.0", "typedoc": "~0.22.14", "typescript": "~4.4.2", "gts": "^3.1.0" } }