UNPKG

2.25 kBJSONView Raw
1{
2 "name": "@fab/cli",
3 "version": "0.1.5",
4 "description": "The CLI entry-point for the FAB ecosystem",
5 "keywords": [
6 "fab",
7 "oclif"
8 ],
9 "homepage": "https://github.com/fab-spec/fab",
10 "bugs": "https://github.com/fab-spec/fab/issues",
11 "repository": "fab-spec/fab",
12 "license": "MIT",
13 "author": "Glen Maddern @geelen",
14 "files": [
15 "/bin",
16 "/lib",
17 "/templates",
18 "/oclif.manifest.json"
19 ],
20 "main": "lib/index.js",
21 "types": "lib/index.d.ts",
22 "bin": {
23 "fab": "./bin/run"
24 },
25 "scripts": {
26 "build": "yarn build:cjs",
27 "build:cjs": "tsc --module commonjs --outDir lib",
28 "build:watch": "yarn build:cjs --watch --preserveWatchOutput",
29 "clean": "rm -rf esm lib package-lock.json",
30 "coverage": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
31 "oclif:generate": "oclif-dev manifest && oclif-dev readme",
32 "prepack": "npm run clean && npm run build && npm run oclif:generate",
33 "postpack": "rm -f oclif.manifest.json",
34 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
35 "version": "oclif-dev readme && git add README.md"
36 },
37 "dependencies": {
38 "@fab/core": "0.1.5",
39 "@oclif/command": "^1",
40 "@oclif/config": "^1",
41 "@oclif/errors": "^1",
42 "@oclif/plugin-help": "^2",
43 "@types/fs-extra": "^8.0.1",
44 "@types/jju": "^1.4.1",
45 "@types/node": "^10",
46 "@types/prettier": "^1.19.0",
47 "@types/semver": "^6.2.0",
48 "chalk": "^3.0.0",
49 "cli-ux": "^5.4.5",
50 "dotenv": "^8.2.0",
51 "execa": "^4.0.0",
52 "fs-extra": "^8.1.0",
53 "jju": "^1.4.0",
54 "json-keys-sort": "^2.0.0",
55 "pkg-up": "^3.1.0",
56 "prettier": "^1.19.1",
57 "pretty-bytes": "^5.3.0",
58 "regex-parser": "^2.2.10",
59 "resolve": "^1.17.0",
60 "semver": "^7.1.1",
61 "shelljs": "^0.8.3",
62 "typescript": "^3.7.5"
63 },
64 "devDependencies": {
65 "@oclif/dev-cli": "^1",
66 "@types/capture-console": "^1.0.0",
67 "capture-console": "^1.0.1",
68 "tmp-promise": "^2.0.2"
69 },
70 "engines": {
71 "node": ">=8.0.0"
72 },
73 "publishConfig": {
74 "access": "public"
75 },
76 "gitHead": "65fd74e0dd6d7aff04214e91e5490eae3953c782",
77 "oclif": {
78 "commands": "./lib/commands",
79 "bin": "fab",
80 "plugins": [
81 "@oclif/plugin-help"
82 ]
83 }
84}