UNPKG

1.73 kBJSONView Raw
1{
2 "name": "@oclif/command",
3 "description": "oclif base command",
4 "version": "1.8.16",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/command/issues",
7 "dependencies": {
8 "@oclif/config": "^1.18.2",
9 "@oclif/errors": "^1.3.5",
10 "@oclif/parser": "^3.8.6",
11 "@oclif/help": "^1.0.1",
12 "debug": "^4.1.1",
13 "semver": "^7.3.2"
14 },
15 "devDependencies": {
16 "@oclif/plugin-plugins": "1.10.10",
17 "@types/chai": "^4.1.7",
18 "@types/mocha": "^8.0.0",
19 "@types/node": "^14.0.14",
20 "@types/semver": "^7.3.1",
21 "chai": "^4.2.0",
22 "cli-ux": "^5.6.6",
23 "conventional-changelog-cli": "^2.1.1",
24 "eslint": "^7.3.1",
25 "eslint-config-oclif": "^3.1.0",
26 "eslint-config-oclif-typescript": "^0.2.0",
27 "fancy-test": "^1.4.3",
28 "globby": "^11.0.1",
29 "mocha": "^8.2.1",
30 "sinon": "^10.0.0",
31 "ts-node": "^9.1.1",
32 "typescript": "3.8.3"
33 },
34 "peerDependencies": {
35 "@oclif/config": "^1"
36 },
37 "engines": {
38 "node": ">=12.0.0"
39 },
40 "files": [
41 "/flush.js",
42 "/flush.d.ts",
43 "/lib"
44 ],
45 "homepage": "https://github.com/oclif/command",
46 "keywords": [
47 "oclif"
48 ],
49 "license": "MIT",
50 "main": "lib/index.js",
51 "oclif": {
52 "devPlugins": [
53 "@oclif/plugin-plugins"
54 ]
55 },
56 "repository": "oclif/command",
57 "scripts": {
58 "build": "rm -rf lib && tsc",
59 "lint": "eslint . --ext .ts --config .eslintrc",
60 "posttest": "yarn lint",
61 "prepublishOnly": "yarn run build",
62 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
63 "version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
64 "pretest": "yarn build --noEmit && tsc -p test --noEmit"
65 },
66 "types": "lib/index.d.ts"
67}