UNPKG

1.52 kBJSONView Raw
1{
2 "name": "@oclif/test",
3 "description": "test helpers for oclif components",
4 "version": "4.1.0",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/test/issues",
7 "dependencies": {
8 "ansis": "^3.3.2",
9 "debug": "^4.3.6"
10 },
11 "peerDependencies": {
12 "@oclif/core": ">= 3.0.0"
13 },
14 "devDependencies": {
15 "@commitlint/config-conventional": "^18.6.3",
16 "@oclif/core": "^4.0.28",
17 "@oclif/prettier-config": "^0.2.1",
18 "@types/chai": "^4.3.20",
19 "@types/debug": "^4.1.12",
20 "@types/mocha": "^10",
21 "@types/node": "^18",
22 "chai": "^5.1.1",
23 "commitlint": "^18.6.1",
24 "eslint": "^8.57.1",
25 "eslint-config-oclif": "^5.2.1",
26 "eslint-config-oclif-typescript": "^3.1.12",
27 "eslint-config-prettier": "^9.1.0",
28 "husky": "^9.1.6",
29 "lint-staged": "^15.2.10",
30 "mocha": "^10",
31 "prettier": "^3.3.3",
32 "shx": "^0.3.3",
33 "tsx": "^4.19.1",
34 "typescript": "^5.6.3"
35 },
36 "engines": {
37 "node": ">=18.0.0"
38 },
39 "files": [
40 "/lib"
41 ],
42 "homepage": "https://github.com/oclif/test",
43 "keywords": [
44 "oclif"
45 ],
46 "license": "MIT",
47 "main": "lib/index.js",
48 "repository": "oclif/test",
49 "scripts": {
50 "build": "shx rm -rf lib && tsc",
51 "lint": "eslint . --ext .ts",
52 "posttest": "yarn lint",
53 "prepare": "husky && yarn build",
54 "prepublishOnly": "yarn run build",
55 "pretest": "yarn build --noEmit && tsc -p test --noEmit",
56 "test": "mocha --forbid-only \"test/**/*.test.ts\""
57 },
58 "types": "lib/index.d.ts"
59}