diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /browser/components/newtab/package.json | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/newtab/package.json')
-rw-r--r-- | browser/components/newtab/package.json | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/browser/components/newtab/package.json b/browser/components/newtab/package.json new file mode 100644 index 0000000000..e7faa86a3b --- /dev/null +++ b/browser/components/newtab/package.json @@ -0,0 +1,126 @@ +{ + "name": "activity-streams", + "description": "A rich visual history feed and a reimagined home page make it easier than ever to find exactly what you're looking for in Firefox.\n\nLearn more about this Test Pilot experiment at https://testpilot.firefox.com/.", + "version": "1.14.3", + "author": "Mozilla (https://mozilla.org/)", + "bugs": { + "url": "https://github.com/mozilla/activity-stream/issues" + }, + "dependencies": { + "fluent": "0.13.0", + "fluent-react": "0.9.0", + "react": "16.13.1", + "react-dom": "16.13.1", + "react-redux": "7.2.0", + "react-transition-group": "4.3.0", + "redux": "4.0.5", + "reselect": "4.0.0" + }, + "devDependencies": { + "@babel/core": "7.8.4", + "@babel/plugin-proposal-class-properties": "7.10.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3", + "@babel/plugin-proposal-optional-chaining": "7.9.0", + "@babel/preset-react": "7.8.3", + "acorn": "7.1.0", + "babel-loader": "8.0.6", + "babel-plugin-jsm-to-commonjs": "0.5.0", + "babel-plugin-jsm-to-esmodules": "0.6.0", + "chai": "4.2.0", + "chai-json-schema": "1.5.1", + "cpx": "1.5.0", + "enzyme": "3.11.0", + "enzyme-adapter-react-16": "1.15.2", + "istanbul-instrumenter-loader": "3.0.1", + "joi-browser": "13.4.0", + "karma": "4.4.1", + "karma-chai": "0.1.0", + "karma-coverage-istanbul-reporter": "2.1.1", + "karma-firefox-launcher": "1.3.0", + "karma-json-reporter": "1.2.1", + "karma-mocha": "1.3.0", + "karma-mocha-reporter": "2.2.5", + "karma-sinon": "1.0.5", + "karma-sourcemap-loader": "0.3.7", + "karma-webpack": "4.0.2", + "loader-utils": "1.2.3", + "lodash": "4.17.15", + "minimist": "1.2.0", + "mocha": "7.0.1", + "mock-raf": "1.0.1", + "node-fetch": "2.6.0", + "node-sass": "4.13.1", + "npm-run-all": "4.1.5", + "prop-types": "15.7.2", + "raw-loader": "4.0.0", + "react-test-renderer": "16.12.0", + "rimraf": "3.0.2", + "sass": "1.25.0", + "sass-lint": "1.13.1", + "shelljs": "0.8.3", + "sinon": "7.3.2", + "webpack": "4.41.6", + "webpack-cli": "3.3.11", + "yamscripts": "0.1.0" + }, + "engines": { + "firefox": ">=45.0 <=*", + "//": "when changing node versions, also edit .nvmrc", + "node": "10.23.*", + "npm": "6.14.10" + }, + "homepage": "https://github.com/mozilla/activity-stream", + "keywords": [ + "mozilla", + "firefox", + "activity-stream" + ], + "license": "MPL-2.0", + "main": "bootstrap.js", + "repository": "mozilla/activity-stream", + "config": { + "mc_root": "../../..", + "newtab_path": "browser/components/newtab", + "mc_dir": "../mozilla-central" + }, + "scripts": { + "mochitest": "(cd $npm_package_config_mc_dir && ./mach mochitest browser/components/newtab/test/browser --headless)", + "mochitest-debug": "(cd $npm_package_config_mc_dir && ./mach mochitest --jsdebugger browser/components/newtab/test/browser)", + "bundle": "npm-run-all bundle:*", + "bundle:webpack": "webpack --config webpack.system-addon.config.js", + "bundle:css": "node-sass content-src/styles -o css && node-sass content-src/aboutwelcome -o aboutwelcome/content", + "bundle:welcomeBundle": "webpack --config webpack.aboutwelcome.config.js", + "bundle:html": "rimraf prerendered && node ./bin/render-activity-stream-html.js", + "buildmc": "npm-run-all buildmc:*", + "buildmc:bundle": "npm run bundle", + "watchmc": "npm-run-all --parallel watchmc:*", + "watchmc:webpack": "npm run bundle:webpack -- --env.development -w", + "watchmc:welcomeBundle": "npm run bundle:welcomeBundle -- --env.development -w", + "watchmc:css": "npm run bundle:css && npm run bundle:css -- --source-map-embed --source-map-contents -w", + "testmc": "npm-run-all testmc:*", + "testmc:lint": "npm run lint", + "testmc:build": "npm run bundle:webpack", + "testmc:unit": "karma start karma.mc.config.js", + "tddmc": "karma start karma.mc.config.js --tdd", + "debugcoverage": "open logs/coverage/index.html", + "lint": "npm-run-all lint:*", + "lint:codespell": "(cd $npm_package_config_mc_root && ./mach lint -l codespell $npm_package_config_newtab_path)", + "lint:eslint": "(cd $npm_package_config_mc_root && ./mach lint -l eslint $npm_package_config_newtab_path)", + "lint:l10n": "(cd $npm_package_config_mc_root && ./mach lint -l l10n --warnings browser/locales/en-US/browser/newtab)", + "lint:license": "(cd $npm_package_config_mc_root && ./mach lint -l license $npm_package_config_newtab_path)", + "lint:sasslint": "sass-lint -v -q", + "test": "npm run testmc", + "tdd": "npm run tddmc", + "vendor": "node ./bin/vendor.js", + "fix": "npm-run-all fix:*", + "fix:eslint": "npm run lint:eslint -- --fix", + "help": "yamscripts help", + "yamscripts": "yamscripts compile", + "__": "# NOTE: THESE SCRIPTS ARE COMPILED!!! EDIT yamscripts.yml instead!!!" + }, + "title": "Activity Stream", + "permissions": { + "multiprocess": true, + "private-browsing": true + } +} |