UNPKG

@ibm-cloud/ibm-schematics

Version:
58 lines 1.73 kB
{ "name": "@ibm-cloud/ibm-schematics", "version": "1.1.0", "description": "IBM Cloud Node SDK", "repository": { "type": "git", "url": "https://github.com/IBM/schematics-node-sdk" }, "keywords": [ "ibm" ], "author": "IBM Corp.", "scripts": { "clean": "rm -rf node_modules", "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/", "postversion": "publisher --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", "check-packages": "installed-check -e -d -v", "all": "npm run test-unit && npm run lint" }, "license": "Apache-2.0", "publishConfig": { "access": "public" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@types/node": "^12.0.8", "axios": "^1.7.9", "extend": "3.0.2", "ibm-cloud-sdk-core": "^5.1.0" }, "overrides": { "micromatch": "^4.0.8", "braces": "^3.0.3" }, "jest": { "collectCoverage": true, "coverageDirectory": "./coverage/", "coveragePathIgnorePatterns": [ "<rootDir>/test/", "<rootDir>/examples/" ], "testEnvironment": "node" } }