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.5.2", "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 test && npm run lint", "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: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:files -- --fix", "doc": "typedoc --name Jira.js --out docs ./src", "test": "npm run test:unit && npm run test:e2e", "test:unit": "jest tests/unit", "test:e2e": "jest tests/e2e --setupFiles=./tests/setup.ts --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" }, "devDependencies": { "@types/express": "^4.17.13", "@types/jest": "^26.0.24", "@types/node": "^16.6.1", "@types/oauth": "^0.9.1", "@types/sinon": "^10.0.2", "@typescript-eslint/eslint-plugin": "^4.29.1", "@typescript-eslint/parser": "^4.29.1", "dotenv": "^10.0.0", "eslint": "^7.32.0", "eslint-config-airbnb-typescript": "^12.3.1", "eslint-import-resolver-typescript": "^2.4.0", "eslint-plugin-import": "^2.24.0", "jest": "^26.6.3", "prettier": "^2.3.2", "prettier-plugin-jsdoc": "^0.3.23", "sinon": "^11.1.2", "ts-jest": "^26.5.6", "typedoc": "^0.21.5", "typescript": "^4.3.5" }, "dependencies": { "atlassian-jwt": "^2.0.1", "axios": "^0.21.1", "form-data": "^4.0.0", "oauth": "^0.9.15", "telemetry.jira.js": "<2", "tslib": "^2.3.1" }}