UNPKG

bugzilla

Version:

A NodeJS module to access Bugzilla instances through the REST API.

51 lines (50 loc) 1.49 kB
{ "name": "bugzilla", "version": "3.1.4", "description": "A NodeJS module to access Bugzilla instances through the REST API.", "main": "dist/index.js", "types": "dist/index.d.ts", "typings": "dist/index.d.ts", "scripts": { "build": "tsc", "format": "prettier --write .", "format-check": "prettier --check .", "test": "vitest run --coverage", "all": "yarn run build && yarn run format-check && yarn run test", "update-snapshots": "vitest run --update", "prepack": "yarn run build", "version": "node scripts/version.js && git add CHANGELOG.md", "postversion": "node scripts/post-version.js && git add CHANGELOG.md && git commit -m 'Update CHANGELOG.md'" }, "repository": { "type": "git", "url": "git+https://github.com/redhat-plumbers-in-action/bugzilla.git" }, "keywords": [ "bugzilla", "node", "nodejs", "typescript", "javascript" ], "author": "Dave Townsend <dtownsend@oxymoronical.com>", "license": "MIT", "bugs": { "url": "https://github.com/redhat-plumbers-in-action/bugzilla/issues" }, "homepage": "https://github.com/redhat-plumbers-in-action/bugzilla#readme", "devDependencies": { "@types/luxon": "3.4.2", "@types/node": "22.9.1", "@vitest/coverage-v8": "^2.1.5", "msw": "2.6.5", "prettier": "3.3.3", "typescript": "5.6.3", "vitest": "^2.1.5" }, "dependencies": { "axios": "1.7.7", "luxon": "3.5.0" }, "packageManager": "yarn@4.5.1" }