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.15.1", "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", "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.5.1", "@types/express": "^4.17.13", "@types/node": "^18.0.0", "@types/oauth": "^0.9.1", "@types/sinon": "^10.0.11", "@typescript-eslint/eslint-plugin": "^5.28.0", "@typescript-eslint/parser": "^5.28.0", "ava": "^4.3.0", "dotenv": "^16.0.1", "eslint": "^8.17.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb-typescript": "^17.0.0", "eslint-import-resolver-typescript": "^2.7.1", "eslint-plugin-import": "^2.26.0", "eslint-plugin-sort-exports": "^0.6.0", "prettier": "^2.7.1", "prettier-plugin-jsdoc": "^0.3.38", "sinon": "^14.0.0", "typedoc": "^0.22.17", "typedoc-plugin-extras": "^2.2.3", "typescript": "^4.7.3" }, "dependencies": { "atlassian-jwt": "^2.0.2", "axios": "^0.27.2", "form-data": "^4.0.0", "oauth": "^0.9.15", "tslib": "^2.4.0" }}