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.0.3", "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", "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 -- --fix", "doc": "typedoc --name Jira.js --out docs ./src", "test": "npm run test:unit && npm run test:system", "test:unit": "jest tests/unit", "test:system": "jest tests/system --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.11", "@types/jest": "^26.0.21", "@types/node": "^14.14.35", "@types/oauth": "^0.9.1", "@types/sinon": "^9.0.11", "@typescript-eslint/eslint-plugin": "^4.19.0", "@typescript-eslint/parser": "^4.19.0", "dotenv": "^8.2.0", "eslint": "^7.22.0", "eslint-config-airbnb-typescript": "^12.3.1", "eslint-import-resolver-typescript": "^2.4.0", "eslint-plugin-import": "^2.22.1", "jest": "^26.6.3", "sinon": "^10.0.0", "ts-jest": "^26.5.4", "typedoc": "^0.20.33", "typescript": "^4.2.3" }, "dependencies": { "atlassian-jwt": "^1.0.3", "axios": "^0.21.1", "form-data": "^4.0.0", "oauth": "^0.9.15", "telemetry.jira.js": "*" }}