UNPKG

2.79 kBJSONView Raw
1{
2 "name": "@feflow/cli",
3 "version": "0.20.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 "devDependencies": {
28 "@types/abbrev": "^1.1.0",
29 "@types/bunyan": "^1.8.6",
30 "@types/chai": "^4.2.0",
31 "@types/command-line-usage": "^5.0.1",
32 "@types/cross-spawn": "^6.0.0",
33 "@types/easy-table": "0.0.32",
34 "@types/execa": "^2.0.0",
35 "@types/figlet": "^1.2.0",
36 "@types/inquirer": "^6.0.3",
37 "@types/js-yaml": "^3.12.1",
38 "@types/minimist": "^1.2.0",
39 "@types/mocha": "^5.2.7",
40 "@types/node": "^12.0.10",
41 "@types/osenv": "^0.1.0",
42 "@types/request-promise": "^4.1.45",
43 "@types/semver": "^6.0.1",
44 "@types/yeoman-environment": "^2.3.1",
45 "chai": "^4.2.0",
46 "conventional-changelog-cli": "^2.0.27",
47 "mocha": "^6.2.0",
48 "nodemon": "^1.19.1",
49 "nyc": "^14.1.1",
50 "prettier": "2.0.5",
51 "ts-node": "^8.3.0",
52 "typescript": "^3.5.2"
53 },
54 "dependencies": {
55 "@feflow/feflow-plugin-devtool": "0.0.1",
56 "@feflow/report": "^0.1.8",
57 "@types/execa": "^2.0.0",
58 "abbrev": "^1.1.1",
59 "bunyan": "^1.8.12",
60 "chalk": "^2.4.2",
61 "command-line-usage": "^6.1.0",
62 "commander": "^2.20.0",
63 "cross-spawn": "^6.0.5",
64 "easy-table": "^1.1.1",
65 "execa": "^4.0.1",
66 "figlet": "^1.2.3",
67 "import-fresh": "^3.1.0",
68 "inquire": "^0.4.8",
69 "inquirer": "^6.5.0",
70 "js-yaml": "^3.13.1",
71 "lookpath": "^1.0.6",
72 "minimist": "^1.2.0",
73 "osenv": "^0.1.5",
74 "package-json": "^6.5.0",
75 "request": "^2.88.0",
76 "request-promise": "^4.2.4",
77 "semver": "^7.3.2",
78 "strip-json-comments": "^3.0.1",
79 "yeoman-environment": "^2.4.0"
80 },
81 "engines": {
82 "node": ">=8.0"
83 },
84 "license": "MIT",
85 "bin": {
86 "fef": "./bin/feflow"
87 },
88 "keywords": [
89 "feflow",
90 "front-end",
91 "flow"
92 ],
93 "nyc": {
94 "include": [
95 "test/**/*.spec.ts"
96 ],
97 "exclude": [
98 "**/*.d.ts"
99 ],
100 "extension": [
101 ".ts"
102 ],
103 "require": [
104 "ts-node/register"
105 ],
106 "reporter": [
107 "text",
108 "html"
109 ],
110 "sourceMap": true,
111 "instrument": true,
112 "all": true
113 },
114 "bugs": {
115 "url": "https://github.com/Tencent/feflow/issues"
116 }
117}