UNPKG

1.14 kBJSONView Raw
1{
2 "name": "@oclif/test",
3 "description": "test helpers for oclif components",
4 "version": "1.0.8",
5 "author": "Jeff Dickey @jdxcode",
6 "bugs": "https://github.com/oclif/test/issues",
7 "dependencies": {
8 "fancy-test": "^1.1.2"
9 },
10 "devDependencies": {
11 "@oclif/command": "^1.4.32",
12 "@oclif/config": "^1.6.27",
13 "@oclif/errors": "^1.1.2",
14 "@oclif/tslint": "^1.1.2",
15 "@types/chai": "^4.1.3",
16 "@types/mocha": "^5.2.0",
17 "@types/node": "^10.3.0",
18 "chai": "^4.1.2",
19 "globby": "^8.0.1",
20 "mocha": "^5.2.0",
21 "ts-node": "^6.0.5",
22 "tslint": "^5.10.0",
23 "typescript": "^2.9.1"
24 },
25 "engines": {
26 "node": ">=8.0.0"
27 },
28 "files": [
29 "/lib"
30 ],
31 "homepage": "https://github.com/oclif/test",
32 "keywords": [
33 "oclif"
34 ],
35 "license": "MIT",
36 "main": "lib/index.js",
37 "repository": "oclif/test",
38 "scripts": {
39 "build": "rm -rf lib && tsc",
40 "lint": "tsc -p test --noEmit && tslint -p test -t stylish",
41 "posttest": "yarn run lint",
42 "prepublishOnly": "yarn run build",
43 "test": "mocha --forbid-only \"test/**/*.test.ts\""
44 },
45 "types": "lib/index.d.ts"
46}