@oclif/test
Version:
test helpers for oclif components
57 lines (56 loc) • 1.46 kB
JSON
{
"name": "@oclif/test",
"description": "test helpers for oclif components",
"version": "3.1.3",
"author": "Salesforce",
"bugs": "https://github.com/oclif/test/issues",
"dependencies": {
"@oclif/core": "^3.12.0",
"chai": "^4.3.10",
"fancy-test": "^3.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.3",
"@oclif/prettier-config": "^0.2.1",
"@types/cli-progress": "^3.11.5",
"@types/mocha": "^10",
"@types/node": "^18",
"commitlint": "^18.4.2",
"eslint": "^8.54.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.15",
"eslint-config-prettier": "^9.0.0",
"globby": "^11.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"mocha": "^10",
"nock": "^13.3.8",
"prettier": "^3.1.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"typescript": "^5"
},
"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 install",
"prepublishOnly": "yarn run build",
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}