UNPKG

3.08 kBJSONView Raw
1{
2 "name": "@feflow/cli",
3 "version": "0.22.1",
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": "rm -rf 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.2.0",
42 "@types/inquirer": "^6.0.3",
43 "@types/js-yaml": "^3.12.5",
44 "@types/lodash": "^4.14.161",
45 "@types/minimist": "^1.2.0",
46 "@types/mocha": "^5.2.7",
47 "@types/nedb": "^1.8.10",
48 "@types/node": "^12.12.57",
49 "@types/osenv": "^0.1.0",
50 "@types/request-promise": "^4.1.45",
51 "@types/semver": "^6.0.1",
52 "@types/yeoman-environment": "^2.10.1",
53 "chai": "^4.2.0",
54 "conventional-changelog-cli": "^2.1.0",
55 "mocha": "^6.2.0",
56 "nodemon": "^1.19.1",
57 "nyc": "^14.1.1",
58 "prettier": "2.0.5",
59 "ts-node": "^8.10.2",
60 "typescript": "^3.9.7"
61 },
62 "dependencies": {
63 "@feflow/feflow-plugin-devtool": "^0.0.4",
64 "@feflow/report": "^0.3.0",
65 "abbrev": "^1.1.1",
66 "axios": "^0.19.2",
67 "bunyan": "^1.8.14",
68 "chalk": "^2.4.2",
69 "cli-html-c": "^1.0.0",
70 "command-line-usage": "^6.1.0",
71 "commander": "^2.20.0",
72 "cross-spawn": "^6.0.5",
73 "easy-table": "^1.1.1",
74 "figlet": "^1.5.0",
75 "import-fresh": "^3.1.0",
76 "inquire": "^0.4.8",
77 "inquirer": "^6.5.0",
78 "js-yaml": "^3.14.0",
79 "lodash": "^4.17.20",
80 "lookpath": "^1.1.0",
81 "marked": "^1.2.4",
82 "minimist": "^1.2.0",
83 "nedb": "^1.8.0",
84 "osenv": "^0.1.5",
85 "package-json": "^6.5.0",
86 "request": "^2.88.0",
87 "request-promise": "^4.2.6",
88 "semver": "^7.3.2",
89 "strip-json-comments": "^3.1.1",
90 "yeoman-environment": "^2.10.3"
91 },
92 "engines": {
93 "node": ">=8.0"
94 },
95 "license": "MIT",
96 "bin": {
97 "fef": "./bin/feflow"
98 },
99 "keywords": [
100 "feflow",
101 "front-end",
102 "flow"
103 ],
104 "nyc": {
105 "include": [
106 "test/**/*.spec.ts"
107 ],
108 "exclude": [
109 "**/*.d.ts"
110 ],
111 "extension": [
112 ".ts"
113 ],
114 "require": [
115 "ts-node/register"
116 ],
117 "reporter": [
118 "text",
119 "html"
120 ],
121 "sourceMap": true,
122 "instrument": true,
123 "all": true
124 },
125 "bugs": {
126 "url": "https://github.com/Tencent/feflow/issues"
127 },
128 "gitHead": "834a44fcd9e9168483282d73d955c089dedcec5b"
129}