UNPKG

1.26 kBJSONView Raw
1{
2 "name": "@oclif/test",
3 "description": "test helpers for oclif components",
4 "version": "1.2.7",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/test/issues",
7 "dependencies": {
8 "fancy-test": "^1.4.3"
9 },
10 "devDependencies": {
11 "@oclif/command": "^1.6.0",
12 "@oclif/config": "^1.12.6",
13 "@oclif/errors": "^1.2.2",
14 "@types/chai": "^4.1.7",
15 "@types/mocha": "^8.0.0",
16 "@types/node": "^14.0.14",
17 "chai": "^4.2.0",
18 "eslint": "^7.3.1",
19 "eslint-config-oclif": "^3.1.0",
20 "eslint-config-oclif-typescript": "^0.2.0",
21 "globby": "^11.0.1",
22 "mocha": "^5.2.0",
23 "nock": "^13.0.1",
24 "ts-node": "^9.0.0",
25 "typescript": "3.8.3"
26 },
27 "engines": {
28 "node": ">=8.0.0"
29 },
30 "files": [
31 "/lib"
32 ],
33 "homepage": "https://github.com/oclif/test",
34 "keywords": [
35 "oclif"
36 ],
37 "license": "MIT",
38 "main": "lib/index.js",
39 "repository": "oclif/test",
40 "scripts": {
41 "build": "rm -rf lib && tsc",
42 "lint": "eslint . --ext .ts --config .eslintrc",
43 "posttest": "yarn lint",
44 "prepublishOnly": "yarn run build",
45 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
46 "pretest": "yarn build --noEmit && tsc -p test --noEmit"
47 },
48 "types": "lib/index.d.ts"
49}