UNPKG

3.11 kBJSONView Raw
1{
2 "name": "@feflow/cli",
3 "version": "0.23.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.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 "rimraf": "^3.0.2",
60 "ts-node": "^8.10.2",
61 "typescript": "^3.9.7"
62 },
63 "dependencies": {
64 "@feflow/feflow-plugin-devtool": "^0.0.4",
65 "@feflow/report": "^0.4.3",
66 "abbrev": "^1.1.1",
67 "axios": "^0.21.1",
68 "bunyan": "^1.8.14",
69 "chalk": "^2.4.2",
70 "cli-html-c": "^1.0.0",
71 "command-line-usage": "^6.1.0",
72 "commander": "^2.20.0",
73 "cross-spawn": "^6.0.5",
74 "easy-table": "^1.1.1",
75 "figlet": "^1.5.0",
76 "import-fresh": "^3.1.0",
77 "inquire": "^0.4.8",
78 "inquirer": "^6.5.0",
79 "js-yaml": "^3.14.0",
80 "lodash": "^4.17.20",
81 "lookpath": "^1.1.0",
82 "marked": "^1.2.4",
83 "minimist": "^1.2.0",
84 "nedb": "^1.8.0",
85 "osenv": "^0.1.5",
86 "package-json": "^6.5.0",
87 "request": "^2.88.0",
88 "request-promise": "^4.2.6",
89 "semver": "^7.3.2",
90 "strip-json-comments": "^3.1.1",
91 "yeoman-environment": "^2.10.3"
92 },
93 "engines": {
94 "node": ">=8.0"
95 },
96 "license": "MIT",
97 "bin": {
98 "fef": "./bin/feflow"
99 },
100 "keywords": [
101 "feflow",
102 "front-end",
103 "flow"
104 ],
105 "nyc": {
106 "include": [
107 "test/**/*.spec.ts"
108 ],
109 "exclude": [
110 "**/*.d.ts"
111 ],
112 "extension": [
113 ".ts"
114 ],
115 "require": [
116 "ts-node/register"
117 ],
118 "reporter": [
119 "text",
120 "html"
121 ],
122 "sourceMap": true,
123 "instrument": true,
124 "all": true
125 },
126 "bugs": {
127 "url": "https://github.com/Tencent/feflow/issues"
128 },
129 "gitHead": "bc16f21c19cf722b2368a0223ed8afd4e1206ab4"
130}