Skip to main content
Module

x/jira/package.json

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Go to Latest
File
{ "name": "jira.js", "version": "2.18.0", "description": "jira.js is a powerful Node.JS/Browser module that allows you to interact with the Jira API very easily", "main": "out/index.js", "types": "out/index.d.ts", "repository": "https://github.com/MrRefactoring/jira.js.git", "author": "Vladislav Tupikin <mrrefactoring@yandex.ru>", "license": "MIT", "keywords": [ "atlassian", "jira", "api", "agile", "cloud", "serviceDesk", "wrapper", "client", "rest" ], "scripts": { "build": "tsc", "prepublishOnly": "npm run build && npm run lint && npm run test", "prettier": "prettier --write src/**/*.ts", "lint": "npm run lint:tests && npm run lint:src:agile && npm run lint:src:clients && npm run lint:src:services && npm run lint:src:version2 && npm run lint:src:version3 && npm run lint:src:files", "lint:tests": "npm run lint:base -- tests", "lint:src:agile": "npm run lint:base -- src/agile", "lint:src:clients": "npm run lint:base -- src/clients", "lint:src:services": "npm run lint:base -- src/services", "lint:src:version2": "npm run lint:base -- src/version2", "lint:src:version3": "npm run lint:base -- src/version3", "lint:src:serviceDesk": "npm run lint:base -- src/serviceDesk", "lint:src:files": "npm run lint:base -- src/*.ts", "lint:base": "eslint --ext .ts", "lint:fix": "npm run lint:tests -- --fix && npm run lint:src:agile -- --fix && npm run lint:src:clients -- --fix && npm run lint:src:services -- --fix && npm run lint:src:version2 -- --fix && npm run lint:src:version3 -- --fix && npm run lint:src:serviceDesk -- --fix && npm run lint:src:files -- --fix", "doc": "typedoc --name \"Jira.js - Jira Cloud API library\" --out docs ./src/index.ts --plugin typedoc-plugin-extras --footerDate --footerTime --footerTypedocVersion --favicon https://svgshare.com/i/bHF.svg", "test": "npm run test:unit && npm run test:integration", "test:unit": "ava tests/unit --timeout=2m -с 8", "test:integration": "ava --timeout=2m --fail-fast --no-worker-threads -c 1 -s tests/integration/**/*.test.ts" }, "ava": { "extensions": [ "ts" ], "require": [ "@swc-node/register", "dotenv/config" ], "environmentVariables": { "SWC_NODE_PROJECT": "./tsconfig.lint.json" } }, "devDependencies": { "@swc-node/register": "^1.6.4", "@swc/helpers": "^0.5.0", "@types/express": "^4.17.17", "@types/node": "^18.15.11", "@types/oauth": "^0.9.1", "@types/sinon": "^10.0.13", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.58.0", "ava": "^5.2.0", "dotenv": "^16.0.3", "eslint": "^8.38.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb-typescript": "^17.0.0", "eslint-import-resolver-typescript": "^3.5.5", "eslint-plugin-import": "^2.27.5", "prettier": "^2.8.7", "prettier-plugin-jsdoc": "^0.4.2", "sinon": "^15.0.3", "ts-node": "^10.9.1", "typedoc": "^0.23.28", "typedoc-plugin-extras": "^2.3.2", "typescript": "^5.0.4" }, "dependencies": { "atlassian-jwt": "^2.0.2", "axios": "^0.27.2", "form-data": "^4.0.0", "oauth": "^0.10.0", "tslib": "^2.5.0" }}