gecko-dev/browser/components/newtab/package.json

137 строки
5.5 KiB
JSON

{
"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.6.4",
"fluent-react": "0.7.0",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-intl": "2.4.0",
"react-redux": "5.0.6",
"redux": "3.6.0"
},
"devDependencies": {
"@octokit/rest": "15.3.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-plugin-jsm-to-commonjs": "0.4.0",
"babel-plugin-jsm-to-esmodules": "0.4.0",
"babel-plugin-transform-async-generator-functions": "6.24.1",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-async-to-module-method": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-react": "6.24.1",
"chai": "4.1.2",
"chai-json-schema": "1.5.0",
"co-task": "1.0.0",
"cpx": "1.5.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-mozilla": "0.14.0",
"eslint-plugin-no-unsanitized": "3.0.0",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-react": "7.7.0",
"eslint-watch": "3.1.4",
"husky": "0.14.3",
"istanbul-instrumenter-loader": "0.2.0",
"joi-browser": "13.0.1",
"karma": "2.0.2",
"karma-chai": "0.1.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.1.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "3.0.0",
"loader-utils": "0.2.16",
"minimist": "1.2.0",
"mocha": "5.1.1",
"mock-raf": "1.0.0",
"node-fetch": "2.1.2",
"node-sass": "4.7.2",
"npm-run-all": "4.1.2",
"pontoon-to-json": "2.0.0",
"react-test-renderer": "16.3.2",
"rimraf": "2.6.2",
"sass-lint": "1.12.1",
"shelljs": "0.8.1",
"simple-git": "1.92.0",
"sinon": "4.5.0",
"webpack": "4.15.0",
"webpack-cli": "3.0.8",
"yamscripts": "0.0.3"
},
"engines": {
"firefox": ">=45.0 <=*",
"//": "when changing node versions, also edit .travis.yml and .nvmrc",
"node": "7.*"
},
"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_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:locales": "pontoon-to-json --src locales --dest data",
"bundle:webpack": "webpack --config webpack.system-addon.config.js",
"bundle:css": "node-sass --source-map true --source-map-contents content-src/styles -o css",
"bundle:html": "rimraf prerendered && webpack --config webpack.prerender.config.js && node ./bin/render-activity-stream-html.js",
"buildmc": "npm-run-all buildmc:*",
"prebuildmc": "rimraf $npm_package_config_mc_dir/browser/components/newtab/",
"buildmc:bundle": "npm run bundle",
"buildmc:copy": "rsync --exclude-from .mcignore -a . $npm_package_config_mc_dir/browser/components/newtab/",
"buildmc:stringsExport": "cp locales/en-US/strings.properties $npm_package_config_mc_dir/browser/locales/en-US/chrome/browser/activity-stream/newtab.properties",
"buildmc:copyPingCentre": "cpx \"ping-centre/PingCentre.jsm\" $npm_package_config_mc_dir/browser/modules",
"startmc": "npm-run-all --parallel startmc:*",
"prestartmc": "npm run buildmc",
"startmc:copy": "cpx \"{{,.}*,!(node_modules)/**/{,.}*}\" $npm_package_config_mc_dir/browser/components/newtab/ -w",
"startmc:copyPingCentre": "npm run buildmc:copyPingCentre -- -w",
"startmc:webpack": "npm run bundle:webpack -- -w",
"startmc:css": "npm run bundle:css && npm run bundle:css -- -w",
"importmc": "rsync --exclude-from .mcignore -a $npm_package_config_mc_dir/browser/components/newtab/ .",
"testmc": "npm-run-all testmc:*",
"testmc:lint": "npm run lint",
"testmc:build": "npm run bundle:webpack && npm run bundle:locales",
"testmc:unit": "karma start karma.mc.config.js || (cat logs/coverage/text.txt && exit 2)",
"posttestmc": "cat logs/coverage/text-summary.txt",
"tddmc": "karma start karma.mc.config.js --tdd",
"debugcoverage": "open logs/coverage/report-html/index.html",
"lint": "npm-run-all lint:*",
"lint:eslint": "esw --ext=.js,.jsm,.json,.jsx .",
"lint:sasslint": "sass-lint -v -q",
"strings-import": "node ./bin/strings-import.js",
"test": "npm run testmc",
"tdd": "npm run tddmc",
"prepush": "npm run lint && npm run yamscripts",
"help": "yamscripts help",
"yamscripts": "yamscripts compile",
"__": "# NOTE: THESE SCRIPTS ARE COMPILED!!! EDIT yamscripts.yml instead!!!"
},
"title": "Activity Stream",
"permissions": {
"multiprocess": true,
"private-browsing": true
}
}