@ibm-cloud/cloudant
Version:
IBM Cloudant Node.js SDK
105 lines (104 loc) • 3.16 kB
JSON
{
"name": "@ibm-cloud/cloudant",
"version": "0.12.13",
"description": "IBM Cloudant Node.js SDK",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/cloudant-node-sdk.git"
},
"keywords": [
"IBM",
"Cloudant",
"database",
"client",
"SDK",
"official"
],
"author": "IBM Corp.",
"scripts": {
"eslint:fix": "eslint . --ext .ts,.js --fix",
"eslint:check": "eslint . --ext .ts,.js --cache",
"lint": "npm run eslint:check",
"lint-fix": "npm run eslint:fix",
"copymeta": "[ -d 'dist' ] && cp package.json LICENSE README.md dist/",
"build": "tsc",
"postbuild": "npm run copymeta",
"version": "bump-my-version bump patch --allow-dirty --new-version $npm_package_version && git add README.md .bumpversion.toml docs/*.md",
"postversion": "npm run copymeta",
"jest": "jest --runInBand",
"test": "npm run build && npm run lint && jest --runInBand test/",
"test-unit": "npm run build && jest --runInBand test/unit/",
"test-integration": "npm run build && jest --runInBand test/integration",
"test-ci": "jest --runInBand --testNamePattern='^((?!@slow).)*$' test/",
"test-unit-ci": "jest --runInBand test/unit/",
"test-integration-ci": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"typedoc": "typedoc"
},
"license": "Apache-2.0",
"engines": {
"node": "^20 || ^22 || ^24"
},
"dependencies": {
"@types/node": "20.19.25",
"ibm-cloud-sdk-core": "5.4.5"
},
"devDependencies": {
"@ibm-cloud/sdk-test-utilities": "^1.0.0",
"@types/extend": "3.0.4",
"@types/jest": "30.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"dotenv": "17.2.3",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.1",
"eslint-import-resolver-typescript": "4.4.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "28.14.0",
"eslint-plugin-jsdoc": "61.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.5.0",
"jest": "30.2.0",
"jest-junit": "16.0.0",
"nock": "14.0.10",
"prettier": "3.7.4",
"sinon": "21.0.0",
"ts-jest": "29.4.6",
"typedoc": "0.28.15",
"typescript": "5.9.3"
},
"peerDependencies": {
"@types/tough-cookie": "^4.0.0",
"extend": "^3.0.2",
"tough-cookie": "^4.0.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testResultsProcessor": "jest-junit"
},
"jest-junit": {
"suiteName": "Generated unit tests",
"outputDirectory": "./junitreports/",
"outputName": "junit.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
},
"files": [
"/index.js",
"/index.js.map",
"/index.d.ts",
"/auth",
"/cloudant",
"/lib"
]
}