UNPKG

2.2 kBJSONView Raw
1{
2 "name": "@fab/cli",
3 "version": "0.1.1",
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.1",
39 "@fab/server": "0.1.1",
40 "@oclif/command": "^1",
41 "@oclif/config": "^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 "execa": "^4.0.0",
51 "fs-extra": "^8.1.0",
52 "jju": "^1.4.0",
53 "json-keys-sort": "^2.0.0",
54 "pkg-up": "^3.1.0",
55 "prettier": "^1.19.1",
56 "pretty-bytes": "^5.3.0",
57 "regex-parser": "^2.2.10",
58 "semver": "^7.1.1",
59 "shelljs": "^0.8.3",
60 "typescript": "^3.7.5"
61 },
62 "devDependencies": {
63 "@oclif/dev-cli": "^1",
64 "@types/capture-console": "^1.0.0",
65 "capture-console": "^1.0.1",
66 "tmp-promise": "^2.0.2"
67 },
68 "engines": {
69 "node": ">=8.0.0"
70 },
71 "publishConfig": {
72 "access": "public"
73 },
74 "gitHead": "350e94cba39106108a5fe22167b2ed01478fc0d4",
75 "oclif": {
76 "commands": "./lib/commands",
77 "bin": "fab",
78 "plugins": [
79 "@oclif/plugin-help"
80 ]
81 }
82}