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.10.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": [ "jira", "api", "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": "jest tests/unit --maxWorkers=1", "test:integration": "jest tests/integration --runInBand", "test:verbose": "npm run test -- --verbose", "test:coverage": "npm run test:unit:coverage && npm run test:system:coverage", "test:unit:coverage": "npm run test:unit -- --coverage", "test:system:coverage": "npm run test:system -- --coverage" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "setupFiles": ["./tests/setup.ts"], "setupFilesAfterEnv": ["./tests/setupAfterEnv.ts"], "globals": { "ts-jest": { "isolatedModules": true } } }, "devDependencies": { "@types/express": "^4.17.13", "@types/jest": "^27.4.0", "@types/node": "^17.0.12", "@types/oauth": "^0.9.1", "@types/sinon": "^10.0.8", "@typescript-eslint/eslint-plugin": "^5.10.1", "@typescript-eslint/parser": "^5.10.1", "dotenv": "^14.3.2", "eslint": "^8.7.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb-typescript": "^16.1.0", "eslint-import-resolver-typescript": "^2.5.0", "eslint-plugin-import": "^2.25.4", "jest": "^27.4.7", "prettier": "^2.5.1", "prettier-plugin-jsdoc": "^0.3.30", "sinon": "^12.0.1", "ts-jest": "^27.1.3", "typedoc": "^0.22.11", "typedoc-plugin-extras": "^2.2.3", "typescript": "^4.5.5" }, "dependencies": { "atlassian-jwt": "^2.0.2", "axios": "^0.25.0", "form-data": "^4.0.0", "oauth": "^0.9.15", "tslib": "^2.3.1" }}