UNPKG

ibm-security-advisor

Version:
55 lines 1.97 kB
{ "name": "ibm-security-advisor", "version": "6.0.0", "description": "Client library to use the IBM Security Advisor", "repository": { "type": "git", "url": "https://github.com/ibm-cloud-security/security-advisor-sdk-node" }, "keywords": [ "ibm", "security-advisor" ], "author": "IBM Corp.", "scripts": { "eslint:fix": "eslint . --fix", "eslint:check": "eslint . --cache", "tslint:fix": "tslint --fix -p . -c tslint.json", "tslint:check": "tslint -p . -c ./tslint.json", "lint": "npm run eslint:check && npm run tslint:check", "lint-fix": "npm run eslint:fix && npm run tslint:fix", "build": "tsc", "postversion": "tsc-publish --no-checks --dry-run", "jest": "jest", "test": "npm run build && npm run lint && jest test/", "test-unit": "npm run build && jest test/unit/", "test-integration": "npm run build && jest test/integration", "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", "encyrpt_secret": "openssl aes-256-cbc -in test/resources/secrets.js -out secrets.js.enc -base64 -K $encrypted_key -iv $encrypted_iv", "decrypt_secret": "openssl aes-256-cbc -d -in secrets.js.enc -out test/resources/secrets.js -base64 -K $encrypted_key -iv $encrypted_iv" }, "license": "Apache-2.0", "engines": { "node": ">=10.0.0" }, "dependencies": { "@types/node": "^12.0.8", "extend": "^3.0.2", "ibm-cloud-sdk-core": "^2.7.1", "tsc-publish": "^0.5.2" }, "jest": { "collectCoverage": true, "coverageDirectory": "./coverage/", "coveragePathIgnorePatterns": [ "<rootDir>/test/" ], "moduleNameMapper": { "package.json": "<rootDir>/__mocks__/package.json" }, "testEnvironment": "node" } }