blob: 93126fe6bf8603d44429ad11ff188bf891580728 [file] [log] [blame]
Michael Davis76720ce2017-02-14 13:44:31 -06001{
Michael Davis14455e12017-09-22 11:56:30 -05002 "name": "openbmc_browser_interface",
3 "description": "openbmc_browser_interface",
Michael Davis76720ce2017-02-14 13:44:31 -06004 "version": "0.0.1",
Iftekharul Islam99d199f2017-03-24 15:28:25 -05005 "private": false,
Michael Davis14455e12017-09-22 11:56:30 -05006 "repository": {
7 "type": "git",
8 "url": "git://github.com/openbmc/phosphor-webui"
9 },
Michael Davis76720ce2017-02-14 13:44:31 -060010 "scripts": {
Ed Tanousfc7a33f2018-09-06 16:52:19 -070011 "build": "rimraf dist && webpack --bail --progress --profile --sort-assets-by size --mode production",
12 "build-debug": "rimraf dist && webpack --bail --progress --profile --sort-assets-by size --mode development",
13 "server": "webpack-dev-server --history-api-fallback --inline --progress --devtool source-map --mode development",
Ed Tanousbbcf6702017-10-06 13:53:06 -070014 "test": "karma start",
15 "test-watch": "karma start --auto-watch --no-single-run",
16 "start": "npm run server"
Michael Davis76720ce2017-02-14 13:44:31 -060017 },
Iftekharul Islam99d199f2017-03-24 15:28:25 -050018 "contributors": [
Michael Davis14455e12017-09-22 11:56:30 -050019 "Iftekharul Islam <iffy.ryan@ibm.com>",
Ed Tanousbbcf6702017-10-06 13:53:06 -070020 "Michael Davis <michael.s.davis@ibm.com>",
Gunnar Mills371eaee2018-02-07 15:49:49 -060021 "Ed Tanous <ed.tanous@intel.com>",
22 "Gunnar Mills <gmills@us.ibm.com>"
Iftekharul Islam99d199f2017-03-24 15:28:25 -050023 ],
24 "files": [
25 "dist"
26 ],
27 "keywords": [
28 "node"
29 ],
Ed Tanousbbcf6702017-10-06 13:53:06 -070030 "dependencies": {
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060031 "angular": "^1.7.5",
32 "angular-animate": "^1.7.5",
Ed Tanousbbcf6702017-10-06 13:53:06 -070033 "angular-clipboard": "^1.6.2",
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060034 "angular-cookies": "^1.7.5",
beccabroeka3b397d2019-01-23 14:03:20 -060035 "angular-messages": "^1.7.6",
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060036 "angular-route": "^1.7.5",
37 "angular-sanitize": "^1.7.5",
Ed Tanousbbcf6702017-10-06 13:53:06 -070038 "angular-ui-bootstrap": "^2.5.0",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070039 "angular-ui-router": "^1.0.20",
Ed Tanousbbcf6702017-10-06 13:53:06 -070040 "angular-websocket": "^2.0.1",
Gunnar Millsb54d0ee2019-02-08 15:42:07 -060041 "bootstrap": "^4.3.1",
beccabroeka30394b2018-12-14 17:19:45 -060042 "ng-toast": "^2.0.0",
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060043 "xterm": "^3.10.1"
Ed Tanousbbcf6702017-10-06 13:53:06 -070044 },
Iftekharul Islam99d199f2017-03-24 15:28:25 -050045 "peerDependencies": {},
Michael Davis76720ce2017-02-14 13:44:31 -060046 "devDependencies": {
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060047 "@babel/core": "^7.2.2",
Gunnar Millsb54d0ee2019-02-08 15:42:07 -060048 "@babel/preset-env": "^7.3.1",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070049 "angular-mocks": "1.7.3",
50 "assets-webpack-plugin": "3.9.6",
51 "autoprefixer": "9.1.5",
52 "babel-core": "6.26.3",
53 "babel-loader": "8.0.2",
54 "compression-webpack-plugin": "2.0.0",
55 "copy-webpack-plugin": "4.5.2",
Ed Tanous0f2f9812018-12-19 17:59:28 -080056 "csp-html-webpack-plugin": "^2.5.0",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070057 "css-loader": "1.0.0",
58 "eslint-plugin-angular": "3.3.0",
Gunnar Millsf875e012018-11-27 13:39:27 -060059 "event-stream": "3.3.4",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070060 "file-loader": "2.0.0",
Ed Tanous0f2f9812018-12-19 17:59:28 -080061 "filter-chunk-webpack-plugin": "^2.1.0",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070062 "html-loader": "^0.5.5",
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060063 "html-minifier": "^3.5.21",
Ed Tanous0f2f9812018-12-19 17:59:28 -080064 "html-webpack-inline-source-plugin": "0.0.10",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070065 "html-webpack-plugin": "^3.2.0",
Ed Tanous0f2f9812018-12-19 17:59:28 -080066 "ignore-assets-webpack-plugin": "^2.0.1",
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060067 "mini-css-extract-plugin": "^0.4.5",
68 "node-sass": "^4.11.0",
Ed Tanousbbcf6702017-10-06 13:53:06 -070069 "null-loader": "^0.1.1",
Ed Tanousbbcf6702017-10-06 13:53:06 -070070 "raw-loader": "^0.5.1",
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060071 "rimraf": "^2.6.3",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070072 "sass-loader": "^7.1.0",
Gunnar Mills9feb9ce2019-01-08 16:42:04 -060073 "style-loader": "^0.23.1",
Ed Tanous0f2f9812018-12-19 17:59:28 -080074 "svg-inline-loader": "^0.8.0",
Ed Tanousfc7a33f2018-09-06 16:52:19 -070075 "uglifyjs-webpack-plugin": "^1.3.0",
Gunnar Millsb54d0ee2019-02-08 15:42:07 -060076 "webpack": "^4.29.3",
77 "webpack-cli": "^3.2.3",
Gunnar Mills29513222019-01-08 15:14:11 -060078 "webpack-dev-server": "^3.1.11"
Michael Davis76720ce2017-02-14 13:44:31 -060079 },
Iftekharul Islam99d199f2017-03-24 15:28:25 -050080 "license": "MIT",
81 "engines": {
Gunnar Mills243e6ca2018-10-23 11:45:42 -050082 "node": ">=4.2.6",
83 "npm": ">=5.6.0"
Iftekharul Islam99d199f2017-03-24 15:28:25 -050084 },
85 "author": ""
Michael Davis76720ce2017-02-14 13:44:31 -060086}