UNPKG

2.12 kBJSONView Raw
1{
2 "name": "oclif",
3 "description": "oclif: create your own CLI",
4 "version": "1.15.2",
5 "author": "Jeff Dickey @jdxcode",
6 "bin": "./bin/run",
7 "bugs": "https://github.com/oclif/oclif/issues",
8 "dependencies": {
9 "@oclif/command": "^1.5.8",
10 "@oclif/config": "^1.12.6",
11 "@oclif/errors": "^1.2.2",
12 "@oclif/fixpack": "^2.3.0",
13 "@oclif/plugin-help": "^2.1.6",
14 "@oclif/plugin-not-found": "^1.2.2",
15 "@oclif/plugin-warn-if-update-available": "^1.5.4",
16 "debug": "^4.1.1",
17 "lodash": "^4.17.11",
18 "nps-utils": "^1.7.0",
19 "sort-pjson": "^1.0.3",
20 "tslib": "^1.9.3",
21 "yeoman-environment": "^2.3.4",
22 "yeoman-generator": "^3.2.0",
23 "yosay": "^2.0.2"
24 },
25 "devDependencies": {
26 "@oclif/dev-cli": "^1.21.0",
27 "@types/lodash": "^4.14.121",
28 "@types/read-pkg": "^3.0.0",
29 "@types/shelljs": "^0.8.3",
30 "@types/yeoman-generator": "^3.0.2",
31 "@types/yosay": "^0.0.29",
32 "chai": "^4.2.0",
33 "eslint": "^6.6.0",
34 "eslint-config-oclif": "^3.1.0",
35 "eslint-config-oclif-typescript": "^0.1.0",
36 "execa": "^1.0.0",
37 "fancy-test": "^1.4.3",
38 "fs-extra": "^7.0.1",
39 "globby": "^9.0.0",
40 "mocha": "^5.2.0",
41 "npm-run-path": "^2.0.2",
42 "nps": "^5.9.3",
43 "shelljs": "^0.8.3",
44 "tmp": "^0.0.33",
45 "ts-node": "^8.0.2",
46 "typescript": "^3.3.3"
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 "lint": "nps lint",
75 "postpack": "rm .oclif.manifest.json",
76 "posttest": "yarn run lint",
77 "prepack": "rm -rf lib && tsc && oclif-dev manifest",
78 "version": "oclif-dev readme && git add README.md",
79 "test": "nps test"
80 },
81 "types": "lib/index.d.ts"
82}