UNPKG

@ibm-cloud/secrets-manager

Version:
50 lines 1.65 kB
{ "name": "@ibm-cloud/secrets-manager", "version": "2.0.12", "description": "Client library for IBM Cloud Secrets Manager", "repository": { "type": "git", "url": "https://github.com/IBM/secrets-manager-node-sdk" }, "keywords": [ "ibm", "secrets-manager" ], "author": "IBM Corp.", "scripts": { "eslint:fix": "eslint . --fix", "eslint:check": "eslint . --cache", "lint": "npm run eslint:check", "lint-fix": "npm run eslint:fix", "build": "tsc && cp package.json dist/ && cp README.md dist/", "postversion": "tsc-publish --no-checks --dry-run", "publishDist": "npm run build && cd dist && npm publish --access public", "jest": "jest", "test": "npm run build && jest test/", "test-unit": "npm run build && jest test/unit/", "test-integration": "npm run build && jest test/integration", "test-examples": "npm run build && jest examples/", "test-travis": "jest --runInBand --testNamePattern='^((?!@slow).)*$' test/", "test-unit-travis": "jest --runInBand test/unit/", "test-integration-travis": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log", "report-coverage": "codecov", "check-packages": "installed-check -e -d -v" }, "license": "Apache-2.0", "engines": { "node": ">=14.0.0" }, "dependencies": { "extend": "^3.0.2", "ibm-cloud-sdk-core": "^5.4.0" }, "jest": { "collectCoverage": true, "coverageDirectory": "./coverage/", "coveragePathIgnorePatterns": [ "<rootDir>/test/", "<rootDir>/examples/" ], "testEnvironment": "node" } }