flamebird

Форк
0
/
package.json 
138 строк · 3.9 Кб
1
{
2
  "name": "flamebird",
3
  "version": "3.0.0-alpha",
4
  "description": "wonderful task manager for Procfile-based and npm-based applications",
5
  "main": "flamebird.js",
6
  "scripts": {
7
    "test": "echo \"No tests\" && exit 0",
8
    "clean": "rimraf dist",
9
    "lint-js": "eslint .",
10
    "lint": "npm run lint-js",
11
    "lint:fix": "npm run lint -- --fix",
12
    "build": "npm run clean && npm run client",
13
    "postinstall": "node postinstall.js",
14
    "server": "node flamebird.js web -p 7733 -w",
15
    "server:dev": "cross-env NODE_ENV=development npm run server",
16
    "client": "webpack --config webpack.config.js -p",
17
    "client:dev": "cross-env NODE_ENV=development npm run client",
18
    "debug": "nodemon --exec \"npm run client:dev\" --watch client -V"
19
  },
20
  "repository": {
21
    "type": "git",
22
    "url": "https://github.com/acacode/flamebird.git"
23
  },
24
  "keywords": [
25
    "task",
26
    "tasks",
27
    "procfile",
28
    "taskmanager",
29
    "taskrunner",
30
    "foreman",
31
    "node-foreman",
32
    "npm-package",
33
    "js",
34
    "task-manager",
35
    "task-sheduler",
36
    "job-sheduler",
37
    "nodejs-utility",
38
    "task-utility",
39
    "node-process",
40
    "process-manager",
41
    "manager",
42
    "process-runner",
43
    "process-run"
44
  ],
45
  "author": "acacode",
46
  "bin": {
47
    "flamebird": "flamebird.js",
48
    "fb": "flamebird.js"
49
  },
50
  "license": "MIT",
51
  "dependencies": {
52
    "@babel/runtime": "^7.5.5",
53
    "ansi_up": "^4.0.4",
54
    "body-parser": "^1.19.0",
55
    "colors": "^1.3.3",
56
    "commander": "^2.20.0",
57
    "express": "^4.17.1",
58
    "grunt": "^1.0.4",
59
    "grunt-available-tasks": "^0.6.3",
60
    "gulp-task-listing": "^1.1.0",
61
    "jquery": "^3.4.1",
62
    "kinka": "^2.5.6",
63
    "lodash": "^4.17.15",
64
    "moment": "^2.24.0",
65
    "opn": "^6.0.0",
66
    "redom": "^3.23.1",
67
    "short-uuid": "^3.1.1",
68
    "tree-kill": "^1.2.1",
69
    "ws": "^7.0.1"
70
  },
71
  "devDependencies": {
72
    "@babel/core": "^7.4.5",
73
    "@babel/plugin-proposal-class-properties": "^7.5.5",
74
    "@babel/plugin-proposal-export-default-from": "^7.5.2",
75
    "@babel/plugin-proposal-export-namespace-from": "^7.5.2",
76
    "@babel/plugin-proposal-object-rest-spread": "^7.5.5",
77
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
78
    "@babel/plugin-transform-runtime": "^7.5.5",
79
    "@babel/preset-env": "^7.5.5",
80
    "@babel/preset-stage-0": "^7.0.0",
81
    "ajv": "^6.10.0",
82
    "babel-eslint": "^10.0.2",
83
    "babel-loader": "^8.0.6",
84
    "babel-plugin-import": "^1.12.0",
85
    "babel-plugin-transform-class-properties": "^6.24.1",
86
    "babel-plugin-transform-export-extensions": "^6.22.0",
87
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
88
    "babel-polyfill": "^6.26.0",
89
    "babel-runtime": "^6.26.0",
90
    "copy-webpack-plugin": "^5.0.3",
91
    "cross-env": "^5.2.0",
92
    "css-loader": "1.0.0",
93
    "dree": "^2.1.10",
94
    "eslint": "^6.2.2",
95
    "eslint-config-prettier": "^6.1.0",
96
    "eslint-config-standard": "^14.0.1",
97
    "eslint-plugin-import": "^2.18.2",
98
    "eslint-plugin-node": "^9.1.0",
99
    "eslint-plugin-prettier": "^3.1.0",
100
    "eslint-plugin-promise": "^4.2.1",
101
    "eslint-plugin-standard": "^4.0.1",
102
    "extract-loader": "^3.1.0",
103
    "file-loader": "^4.2.0",
104
    "handlebars-loader": "^1.7.1",
105
    "html-loader": "^0.5.5",
106
    "html-minifier-webpack-plugin": "^2.2.1",
107
    "html-webpack-plugin": "^3.2.0",
108
    "jimp": "^0.6.4",
109
    "mini-css-extract-plugin": "^0.7.0",
110
    "nodemon": "^1.19.1",
111
    "optimize-css-assets-webpack-plugin": "^5.0.3",
112
    "prettier": "^1.18.2",
113
    "raw-loader": "^3.1.0",
114
    "responsive-loader": "^1.2.0",
115
    "rimraf": "^2.7.1",
116
    "style-ext-html-webpack-plugin": "^4.1.2",
117
    "style-loader": "^0.23.1",
118
    "terser-webpack-plugin": "^1.4.1",
119
    "url-loader": "^2.1.0",
120
    "webpack": "^4.35.0",
121
    "webpack-cli": "^3.3.5"
122
  },
123
  "directories": {
124
    "server": "server"
125
  },
126
  "files": [
127
    "dist",
128
    "flamebird.js",
129
    "LICENSE",
130
    "postinstall.js",
131
    "README.md",
132
    "server"
133
  ],
134
  "bugs": {
135
    "url": "https://github.com/acacode/flamebird/issues"
136
  },
137
  "homepage": "https://github.com/acacode/flamebird"
138
}
139

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.