UNPKG

2.16 kBJSONView Raw
1{
2 "name": "oclif",
3 "description": "oclif: create your own CLI",
4 "version": "1.7.5",
5 "author": "Jeff Dickey @jdxcode",
6 "bin": "./bin/run",
7 "bugs": "https://github.com/oclif/oclif/issues",
8 "dependencies": {
9 "@oclif/command": "^1.4.5",
10 "@oclif/config": "^1.3.60",
11 "@oclif/errors": "^1.0.3",
12 "@oclif/plugin-help": "^1.2.1",
13 "@oclif/plugin-not-found": "^1.0.5",
14 "@oclif/plugin-warn-if-update-available": "^1.0.2",
15 "debug": "^3.1.0",
16 "fixpack": "^2.3.1",
17 "lodash": "^4.17.5",
18 "nps-utils": "^1.5.0",
19 "sort-pjson": "^1.0.2",
20 "yeoman-environment": "^2.0.5",
21 "yeoman-generator": "^2.0.3",
22 "yosay": "^2.0.1"
23 },
24 "devDependencies": {
25 "@oclif/dev-cli": "^1.4.2",
26 "@oclif/tslint": "^1.0.2",
27 "@types/lodash": "^4.14.106",
28 "@types/read-pkg": "^3.0.0",
29 "@types/shelljs": "^0.7.8",
30 "@types/yeoman-generator": "^2.0.1",
31 "@types/yosay": "^0.0.29",
32 "chai": "^4.1.2",
33 "eslint": "^4.19.1",
34 "eslint-config-oclif": "^1.4.0",
35 "execa": "^0.10.0",
36 "fancy-test": "^1.0.1",
37 "fs-extra": "^5.0.0",
38 "globby": "^8.0.1",
39 "mocha": "^5.0.5",
40 "npm-run-path": "^2.0.2",
41 "nps": "^5.8.2",
42 "shelljs": "^0.8.1",
43 "tmp": "^0.0.33",
44 "ts-node": "^5.0.1",
45 "tslint": "^5.9.1",
46 "typescript": "^2.7.2"
47 },
48 "engines": {
49 "node": ">=8.0.0"
50 },
51 "files": [
52 ".oclif.manifest.json",
53 "/bin",
54 "/lib",
55 "/templates"
56 ],
57 "homepage": "https://github.com/oclif/oclif",
58 "keywords": [
59 "oclif"
60 ],
61 "license": "MIT",
62 "main": "lib/index.js",
63 "oclif": {
64 "commands": "./lib/commands",
65 "plugins": [
66 "@oclif/plugin-help",
67 "@oclif/plugin-warn-if-update-available",
68 "@oclif/plugin-not-found"
69 ],
70 "bin": "oclif"
71 },
72 "repository": "oclif/oclif",
73 "scripts": {
74 "build": "rm -rf lib && tsc",
75 "lint": "nps lint",
76 "postpublish": "rm .oclif.manifest.json",
77 "posttest": "yarn run lint",
78 "prepublishOnly": "yarn run build && oclif-dev manifest",
79 "version": "oclif-dev readme && oclif-dev manifest && git add README.md",
80 "test": "nps test"
81 },
82 "types": "lib/index.d.ts"
83}