UNPKG

tickethead-sdk

Version:

SDK for the Tickethead API

89 lines (88 loc) 2.99 kB
{ "name": "tickethead-sdk", "version": "10.0.1", "description": "SDK for the Tickethead API", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "scripts": { "sqnet": "docker network create sonarqube", "sqserver": "docker run -d --name sonarqube --network=sonarqube -p 9000:9000 sonarqube:latest", "sqsetup": "npm run sqnet && npm run sqserver", "sqscan": "docker run --rm --network=sonarqube -e SONAR_HOST_URL=http://sonarqube:9000 -v %INIT_CWD%:/usr/src sonarsource/sonar-scanner-cli", "sed": "sed -i 's|.*/src|SF:./src|g' ./.tap/report/lcov.info", "sed:win": "@powershell -Command \"(get-content .tap/report/lcov.info) | %{$_ -replace '.*/src','SF:./src'} | set-content .tap/report/lcov.info\"", "analysis": "npm run test:lcov && npm run sed && npm run sqscan", "analysis:win": "npm run test:lcov && npm run sed:win && npm run sqscan", "test": "tap --disable-coverage ./test/unit ./test/integration", "test:lcov": "tap --coverage-report=lcovonly ./test/unit ./test/integration", "test:only": "tap --disable-coverage -O ./test/unit ./test/integration", "test:coverage": "tap --coverage-report=lcov ./test/integration ./test/unit", "benchmark": "tap --disable-coverage --reporter silent -T ./test/benchmark", "prepack": "npm run build", "prepublishOnly": "npm run build", "publish:private": "npm publish --registry=https://pkgs.dev.azure.com/tickethead/_packaging/tickethead/npm/registry/", "build": "tsc", "format": "npx eslint --fix ." }, "files": [ "dist/src/**", "!**/*.json", "!**/*.tsbuildinfo", "CHANGELOG.md", "README.md" ], "repository": { "type": "git", "url": "https://tickethead@dev.azure.com/tickethead/Ticketing/_git/sdk" }, "keywords": [ "sdk", "ticketing", "ticketing-sdk", "tickethead" ], "contributors": [ "Srdjan Hajder <s.hajder@tickethead.io>", "Branimir Malesevic <branimir.malesevic@bam.fan>", "Uros Malesevic <uros.malesevic@bam.fan>", "Aleksandra Radakovic <a.radakovic@tickethead.io>" ], "license": "ISC", "devDependencies": { "@faker-js/faker": "^8.4.1", "@types/base45": "^2.0.2", "@types/elliptic": "^6.4.14", "@types/jsrsasign": "^10.5.13", "@types/node": "^18.14.2", "@types/react": "^19.1.2", "@types/tap": "^15.0.8", "@typescript-eslint/eslint-plugin": "^7.2.0", "@typescript-eslint/parser": "^7.2.0", "csv": "^6.3.11", "dotenv": "^16.4.5", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jsdoc": "^46.10.1", "nock": "^13.5.4", "tap": "^21.1.0", "ts-node": "^10.9.2", "typescript": "^5.4.2" }, "dependencies": { "@ridi/object-case-converter": "^2.0.4", "axios": "^1.6.3", "axios-cache-interceptor": "^1.4.1", "axios-retry": "^3.3.1", "base45": "^3.0.0", "elliptic": "^6.5.4", "events": "^3.3.0", "jsrsasign": "^11.1.0", "jwt-decode": "^3.1.2", "query-string": "^7.1.3" }, "tap": { "allow-incomplete-coverage": true, "timeout": 300 } }