yocto-autobuilder2/yocto_console_view/package.json
Richard Purdie 36ae2de715 yocto_console_view: Convert to new plugin standards to match upstream buildbot
Our plugin is based on upstream buildbot's console plugin. Upstream moved
away from coffescript and made a number of other fixes and improvements.

Run decaffeinate on the coffeescript to translate to angularjs and then
convert to the new build environment and standards.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-11-29 18:33:03 +00:00

26 lines
871 B
JSON

{
"name": "yocto-console-view",
"plugin_name": "console_view",
"private": true,
"main": "yocto_console_view/static/scripts.js",
"style": "yocto_console_view/static/styles.js",
"scripts": {
"build": "rimraf yocto_console_view/static && webpack --bail --progress --profile --env prod",
"build-dev": "rimraf yocto_console_view/static && webpack --bail --progress --profile --env dev",
"dev": "webpack --bail --progress --profile --watch --env dev"
},
"devDependencies": {
"angular-mocks": "^1.7.9",
"buildbot-build-common": ">0.1",
"lodash": "^4.17.11",
"rimraf": "^2.6.3"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.15",
"angular": "^1.7.9",
"angular-animate": "^1.7.9",
"buildbot-data-js": ">0.1",
"guanlecoja-ui": ">0.1"
}
}