UNPKG

3.17 kBJSONView Raw
1{
2 "name": "@feflow/cli",
3 "version": "0.24.4",
4 "description": "A front-end flow tool.",
5 "main": "./lib/index.js",
6 "directories": {
7 "lib": "lib",
8 "test": "__tests__"
9 },
10 "files": [
11 "bin",
12 "src",
13 "lib"
14 ],
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/Tencent/feflow.git"
18 },
19 "scripts": {
20 "start": "npm run build:live",
21 "build": "rimraf lib && tsc",
22 "test": "nyc mocha -r ts-node/register __tests__/**/*.test.ts",
23 "build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/cli/index.ts",
24 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
25 "prepublish": "npm run build"
26 },
27 "oclif": {
28 "bin": "fef",
29 "macos": {
30 "identifier": "com.feflow.cli"
31 }
32 },
33 "devDependencies": {
34 "@oclif/dev-cli": "^1.22.2",
35 "@types/abbrev": "^1.1.0",
36 "@types/bunyan": "^1.8.6",
37 "@types/chai": "^4.2.12",
38 "@types/command-line-usage": "^5.0.1",
39 "@types/cross-spawn": "^6.0.0",
40 "@types/easy-table": "0.0.32",
41 "@types/figlet": "^1.5.1",
42 "@types/inquirer": "^6.0.3",
43 "@types/js-yaml": "^3.12.5",
44 "@types/lockfile": "^1.0.1",
45 "@types/lodash": "^4.14.161",
46 "@types/minimist": "^1.2.0",
47 "@types/mocha": "^5.2.7",
48 "@types/nedb": "^1.8.10",
49 "@types/node": "^12.12.57",
50 "@types/osenv": "^0.1.0",
51 "@types/request-promise": "^4.1.45",
52 "@types/semver": "^6.0.1",
53 "@types/yeoman-environment": "^2.10.1",
54 "chai": "^4.2.0",
55 "conventional-changelog-cli": "^2.1.0",
56 "mocha": "^6.2.0",
57 "nodemon": "^1.19.1",
58 "nyc": "^14.1.1",
59 "prettier": "2.0.5",
60 "rimraf": "^3.0.2",
61 "ts-node": "^8.10.2",
62 "typescript": "^3.9.7"
63 },
64 "dependencies": {
65 "@feflow/feflow-plugin-devtool": "^0.2.7",
66 "@feflow/report": "^0.4.9",
67 "abbrev": "^1.1.1",
68 "axios": "^0.21.1",
69 "bunyan": "^1.8.14",
70 "chalk": "^2.4.2",
71 "cli-html-c": "^1.0.0",
72 "command-line-usage": "^6.1.0",
73 "commander": "^2.20.0",
74 "cross-spawn": "^6.0.5",
75 "easy-table": "^1.1.1",
76 "figlet": "^1.5.0",
77 "glob": "^7.1.7",
78 "import-fresh": "^3.1.0",
79 "inquire": "^0.4.8",
80 "inquirer": "^6.5.0",
81 "js-yaml": "^3.14.0",
82 "lockfile": "^1.0.4",
83 "lodash": "^4.17.20",
84 "lookpath": "^1.1.0",
85 "marked": "^1.2.4",
86 "minimist": "^1.2.0",
87 "osenv": "^0.1.5",
88 "package-json": "^6.5.0",
89 "request": "^2.88.0",
90 "request-promise": "^4.2.6",
91 "semver": "^7.3.2",
92 "strip-json-comments": "^3.1.1",
93 "yeoman-environment": "^2.10.3"
94 },
95 "engines": {
96 "node": ">=8.0"
97 },
98 "license": "MIT",
99 "bin": {
100 "fef": "./bin/feflow"
101 },
102 "keywords": [
103 "feflow",
104 "front-end",
105 "flow"
106 ],
107 "nyc": {
108 "include": [
109 "test/**/*.spec.ts"
110 ],
111 "exclude": [
112 "**/*.d.ts"
113 ],
114 "extension": [
115 ".ts"
116 ],
117 "require": [
118 "ts-node/register"
119 ],
120 "reporter": [
121 "text",
122 "html"
123 ],
124 "sourceMap": true,
125 "instrument": true,
126 "all": true
127 },
128 "bugs": {
129 "url": "https://github.com/Tencent/feflow/issues"
130 },
131 "gitHead": "87a792ca7a1fc05d1fb6526d29051cb2da744565"
132}