ibm-cloud-databases
Version:
IBM Cloud Databases Node.js SDK
53 lines • 1.75 kB
JSON
{
"name": "ibm-cloud-databases",
"version": "0.1.0",
"description": "IBM Cloud Databases Node.js SDK",
"repository": {
"type": "git",
"url": "https://github.com/IBM/cloud-databases-node-sdk"
},
"keywords": [
"ibm"
],
"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 && 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-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": ">=10.0.0"
},
"dependencies": {
"@types/node": "^12.0.8",
"extend": "^3.0.2",
"ibm-cloud-sdk-core": "^2.10.3"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/examples/"
],
"testEnvironment": "node",
"verbose": false,
"silent": false
}
}