ibm-vpc
Version:
IBM Cloud VPC Node.js SDK
48 lines • 1.49 kB
JSON
{
"name": "ibm-vpc",
"version": "0.27.2",
"description": "IBM Cloud VPC Node.js SDK",
"repository": {
"type": "git",
"url": "https://github.com/IBM/vpc-node-sdk"
},
"keywords": [
"ibm"
],
"author": "IBM Corp.",
"scripts": {
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check",
"lint-fix": "npm run eslint:fix && npm run tslint:fix",
"build": "tsc && cp package.json dist/",
"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-example": "npm run build && jest examples/ ",
"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",
"check-packages": "installed-check -e -d -v"
},
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/node": "^14.0.0",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^5.4.2",
"uuid": "^9.0.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"testEnvironment": "node"
}
}