@oclif/test
Version:
test helpers for oclif components
60 lines (59 loc) • 1.52 kB
JSON
{
"name": "@oclif/test",
"description": "test helpers for oclif components",
"version": "4.1.0",
"author": "Salesforce",
"bugs": "https://github.com/oclif/test/issues",
"dependencies": {
"ansis": "^3.3.2",
"debug": "^4.3.6"
},
"peerDependencies": {
"@oclif/core": ">= 3.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.6.3",
"@oclif/core": "^4.0.28",
"@oclif/prettier-config": "^0.2.1",
"@types/chai": "^4.3.20",
"@types/debug": "^4.1.12",
"@types/mocha": "^10",
"@types/node": "^18",
"chai": "^5.1.1",
"commitlint": "^18.6.1",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.1",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10",
"prettier": "^3.3.3",
"shx": "^0.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/oclif/test",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"repository": "oclif/test",
"scripts": {
"build": "shx rm -rf lib && tsc",
"lint": "eslint . --ext .ts",
"posttest": "yarn lint",
"prepare": "husky && yarn build",
"prepublishOnly": "yarn run build",
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}