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