UNPKG

2.46 kBJSONView Raw
1{
2 "name": "@fab/cli",
3 "version": "0.0.5",
4 "description": "The CLI entry-point for the FAB ecosystem",
5 "keywords": [
6 "oclif"
7 ],
8 "homepage": "https://github.com/fab-spec/fab",
9 "bugs": "https://github.com/fab-spec/fab/issues",
10 "repository": "fab-spec/fab",
11 "license": "MIT",
12 "author": "Glen Maddern @geelen",
13 "files": [
14 "/bin",
15 "/lib",
16 "/templates",
17 "/oclif.manifest.json"
18 ],
19 "main": "lib/index.js",
20 "types": "lib/index.d.ts",
21 "bin": {
22 "fab": "./bin/run"
23 },
24 "scripts": {
25 "build": "yarn build:cjs",
26 "build:cjs": "tsc --module commonjs --outDir lib",
27 "build:watch": "yarn build:cjs --watch --preserveWatchOutput",
28 "clean": "rm -rf lib",
29 "coverage": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
30 "oclif:generate": "oclif-dev manifest && oclif-dev readme",
31 "prepack": "npm run clean && npm run build && npm run oclif:generate",
32 "postpack": "rm -f oclif.manifest.json",
33 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
34 "version": "oclif-dev readme && git add README.md"
35 },
36 "dependencies": {
37 "@cloudflare/wrangler": "^1.6.0",
38 "@fab/core": "^0.0.5",
39 "@fab/server": "^0.0.5",
40 "@oclif/command": "^1",
41 "@oclif/config": "^1",
42 "@oclif/plugin-help": "^2",
43 "@rollup/plugin-alias": "^2.2.0",
44 "@rollup/plugin-json": "^4.0.0",
45 "@rollup/plugin-node-resolve": "^6.0.0",
46 "@types/decompress": "^4.2.3",
47 "@types/fs-extra": "^8.0.1",
48 "@types/jju": "^1.4.1",
49 "@types/node": "^10",
50 "@types/prettier": "^1.19.0",
51 "@types/semver": "^6.2.0",
52 "@types/shelljs": "^0.8.6",
53 "chalk": "^3.0.0",
54 "decompress": "^4.2.0",
55 "deterministic-zip": "^1.1.0",
56 "execa": "^4.0.0",
57 "fs-extra": "^8.1.0",
58 "guid-typescript": "^1.0.9",
59 "jju": "^1.4.0",
60 "path-browserify": "^1.0.0",
61 "pkg-up": "^3.1.0",
62 "prettier": "^1.19.1",
63 "regex-parser": "^2.2.10",
64 "rollup": "^1.27.10",
65 "rollup-plugin-commonjs": "^10.1.0",
66 "rollup-plugin-hypothetical": "^2.1.0",
67 "semver": "^7.1.1",
68 "shelljs": "^0.8.3",
69 "theros": "^1.0.6",
70 "tslib": "^1"
71 },
72 "devDependencies": {
73 "@oclif/dev-cli": "^1"
74 },
75 "engines": {
76 "node": ">=8.0.0"
77 },
78 "publishConfig": {
79 "access": "public"
80 },
81 "gitHead": "469d75a2e04837ca55089e5a4aa3e27d5945945b",
82 "oclif": {
83 "commands": "./lib/commands",
84 "bin": "fab",
85 "plugins": [
86 "@oclif/plugin-help"
87 ]
88 }
89}