{
  "name": "@sonisoft/now-sdk-ext-core",
  "version": "6.6.0",
  "description": "Comprehensive TypeScript library extending ServiceNow SDK with application management, ATF testing, real-time log monitoring, AMB event subscriptions, and automation tools",
  "keywords": [
    "servicenow",
    "sdk",
    "automation",
    "testing",
    "atf",
    "cicd",
    "devops",
    "logs",
    "monitoring",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/sonisoft-cnanda/now-sdk-ext-core.git"
  },
  "type": "module",
  "author": "",
  "license": "MIT",
  "scripts": {
    "build-index-export": "npx ctix build --config ./.ctirc && node scripts/finalize-barrel.mjs",
    "push": "npm run build && npm run publish-registry",
    "publish-registry": "npm publish",
    "alpha": "npm version premajor --preid alpha",
    "beta": " npm version premajor --preid beta",
    "buildts": "tsc -p ./ && tsc-alias",
    "build": "npm run clean && npm run build-index-export && npm run buildts",
    "clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
    "copy-static-assets": "ts-node copyStaticAssets.ts",
    "lint": "tsc --noEmit && eslint ./src",
    "semantic-release": "semantic-release",
    "test": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --coverage --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --watchAll=false --testPathIgnorePatterns=\"/integration/\"",
    "test:unit": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --coverage --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --watchAll=false --testPathIgnorePatterns=\"/integration/\"",
    "test:eval": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --runInBand --runTestsByPath test/unit/auth/CredentialProvider.test.ts test/unit/auth/BrowserSession.test.ts test/unit/auth/BrowserSessionCsrf.test.ts test/unit/auth/DesktopBrowserSession.test.ts test/unit/auth/SessionRenewal.test.ts test/unit/test_utils/instance-alias.test.ts test/unit/comm/http/sdkDeepImports.test.ts test/unit/BackgroundScriptExecutor.test.ts test/unit/sn/xml/XMLRecordManager.test.ts test/unit/sn/updateset/UpdateSetManager.test.ts test/unit/util/CSRFTokenHelper.test.ts test/unit/policy/RequestHandlerGate.test.ts test/unit/policy/ScriptEvasion.test.ts test/unit/util/LoggerRedaction.test.ts test/unit/util/NoStdoutWrites.test.ts",
    "test:consumer": "node scripts/sdk-compat-consumer.mjs",
    "test:consumer:cleanup": "node scripts/sdk-compat-consumer-cleanup.test.mjs",
    "test:eval:live": "node scripts/sdk-compat-live.mjs",
    "test:integration": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --testPathPatterns=\"/integration/\" --watchAll=false --testTimeout=120000",
    "test:integration:auth": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --runInBand --testTimeout=120000 --runTestsByPath test/integration/auth/DesktopBrowserSession_IT.test.ts",
    "test:all": "node --experimental-vm-modules node_modules/.bin/jest --forceExit --coverage --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --watchAll=false",
    "watch-test": "npm run test:unit -- --watchAll",
    "watch-test:integration": "npm run test:integration -- --watchAll",
    "watch-ts": "tsc -w",
    "export-update-set": "node dist/cli/export-update-set.js",
    "prepare": "git config core.hooksPath .githooks && sh scripts/setup-gitleaks.sh",
    "pre-publish": "npm run build-index-export"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "@servicenow/glide": "^27.0.5",
    "@servicenow/sdk": "4.12.0",
    "@servicenow/sdk-build-core": "4.12.0",
    "@servicenow/sdk-cli": "4.12.0",
    "@servicenow/sdk-cli-core": "3.0.3",
    "@servicenow/sdk-core": "4.12.0",
    "@ts-morph/common": "^0.24.0",
    "@xmldom/xmldom": "^0.9.12",
    "acorn": "^8.18.0",
    "async": "3.2.6",
    "bluebird": "3.7.2",
    "cometd": "^9.0.0",
    "cometd-nodejs-client": "^2.0.0",
    "crypto-js": "4.2.0",
    "dotenv": "^17.4.2",
    "fast-xml-parser": "^4.5.4",
    "get-installed-path": "^4.0.8",
    "json5": "^2.2.3",
    "lodash": "^4.17.23",
    "node-fetch": "^3.3.2",
    "node-gzip": "1.1.2",
    "qs": "^6.15.0",
    "typed-config": "^1.0.0",
    "winston": "3.14.2",
    "ws": "^8.18.0",
    "xml2js": "^0.6.2"
  },
  "devDependencies": {
    "@eslint/js": "^9.10.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.9",
    "@semantic-release/npm": "^13.0.0",
    "@types/async": "3.2.25",
    "@types/bluebird": "3.5.42",
    "@types/chai": "5.2.3",
    "@types/crypto-js": "^4.2.2",
    "@types/eslint": "9.6.0",
    "@types/eslint__js": "^8.42.3",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^30.0.0",
    "@types/jquery": "4.0.1",
    "@types/lodash": "^4.17.7",
    "@types/mock-fs": "^4.13.4",
    "@types/node": "^26.0.0",
    "@types/node-gzip": "^1.1.3",
    "@types/request": "2.48.13",
    "@types/request-promise": "4.1.51",
    "@types/shelljs": "0.10.0",
    "@types/supertest": "7.2.1",
    "@types/uuid": "^11.0.0",
    "@types/winston": "2.4.4",
    "@types/ws": "^8.5.12",
    "chai": "6.2.2",
    "concurrently": "10.0.5",
    "conventional-changelog-conventionalcommits": "^10.2.1",
    "create-ts-index": "^1.14.0",
    "ctix": "^2.6.4",
    "diff": "^9.0.0",
    "eslint": "^10.8.0",
    "glob": "^13.0.6",
    "globals": "^17.8.0",
    "jest": "^30.2.0",
    "jest-junit": "^17.0.0",
    "jsdom": "^30.0.0",
    "mock-fs": "^5.2.0",
    "nodemon": "^3.1.4",
    "prettier": "^3.3.3",
    "rimraf": "^6.0.0",
    "semantic-release": "^25.0.8",
    "shelljs": "0.10.0",
    "supertest": "7.2.2",
    "ts-jest": "^29.2.4",
    "ts-jest-mocker": "^1.0.0",
    "ts-node": "^10.9.2",
    "tsc-alias": "^1.8.10",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.5.0",
    "typescript-transform-paths": "^3.5.0"
  },
  "overrides": {
    "fast-xml-parser": "^4.5.4",
    "tar": "^7.5.10",
    "serialize-javascript": "^7.0.3",
    "rollup": "^4.59.0",
    "tough-cookie": "^4.1.4",
    "ajv": "^6.14.0",
    "libxmljs2": "^0.37.0",
    "lodash": "^4.17.23"
  },
  "engines": {
    "node": ">=26.0.0"
  },
  "optionalDependencies": {
    "@sonisoft/sn-credstore": "^1.2.1"
  }
}
