UNPKG

3.14 kBJSONView Raw
1{
2 "name": "@feflow/cli",
3 "version": "0.24.0",
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/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.0.4",
66 "@feflow/report": "^0.4.5",
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 "import-fresh": "^3.1.0",
78 "inquire": "^0.4.8",
79 "inquirer": "^6.5.0",
80 "js-yaml": "^3.14.0",
81 "lockfile": "^1.0.4",
82 "lodash": "^4.17.20",
83 "lookpath": "^1.1.0",
84 "marked": "^1.2.4",
85 "minimist": "^1.2.0",
86 "osenv": "^0.1.5",
87 "package-json": "^6.5.0",
88 "request": "^2.88.0",
89 "request-promise": "^4.2.6",
90 "semver": "^7.3.2",
91 "strip-json-comments": "^3.1.1",
92 "yeoman-environment": "^2.10.3"
93 },
94 "engines": {
95 "node": ">=8.0"
96 },
97 "license": "MIT",
98 "bin": {
99 "fef": "./bin/feflow"
100 },
101 "keywords": [
102 "feflow",
103 "front-end",
104 "flow"
105 ],
106 "nyc": {
107 "include": [
108 "test/**/*.spec.ts"
109 ],
110 "exclude": [
111 "**/*.d.ts"
112 ],
113 "extension": [
114 ".ts"
115 ],
116 "require": [
117 "ts-node/register"
118 ],
119 "reporter": [
120 "text",
121 "html"
122 ],
123 "sourceMap": true,
124 "instrument": true,
125 "all": true
126 },
127 "bugs": {
128 "url": "https://github.com/Tencent/feflow/issues"
129 },
130 "gitHead": "f48422e105b561d9322d5a913e841dbc7d54d945"
131}