chromium-dashboard/package.json

97 строки
4.1 KiB
JSON
Исходник Обычный вид История

{
"name": "chromestatus-dashboard",
"description": "Chrome platform status - chromestatus.com",
"homepage": "https://www.chromestatus.com",
"private": true,
"engines": {
"node": ">=6.0.0"
},
2015-11-17 20:11:51 +03:00
"scripts": {
"deps": "python3 -m pip install -t lib -r requirements.txt --upgrade; cd py2; python3 -m pip install -t lib -r requirements.txt --upgrade",
"dev-deps": "python3 -m pip install --no-deps -r requirements.dev.txt",
"do-tests": "curl -X POST 'http://localhost:15606/reset' && python3 -m unittest discover -p '*_test.py' -b",
"start-emulator": "gcloud beta emulators datastore start --host-port=:15606 --no-store-on-disk --consistency=1.0",
"stop-emulator": "curl -X POST 'http://localhost:15606/shutdown'",
"test": "(npm run start-emulator > /dev/null 2>&1 &); sleep 6; curl --retry 4 http://localhost:15606/ --retry-connrefused; npm run do-tests; status=$?; npm run stop-emulator; exit $status",
"test2": "cd py2; python2 -m unittest discover -p '*_py2test.py' -b",
"do-coverage": "coverage3 erase && coverage3 run -m unittest discover -p '*_test.py' -b && coverage3 html",
"coverage": "(npm run start-emulator > /dev/null 2>&1 &); sleep 3; curl --retry 4 http://localhost:15606/ --retry-connrefused; npm run do-coverage; npm run stop-emulator",
"view-coverage": "pushd htmlcov/; python3 -m http.server 8080; popd",
"lint": "gulp lint-fix && lit-analyzer \"static/elements/chromedash-!(featurelist)*.js\"",
"pylint": "pylint --output-format=parseable *py api/*py customtags/*py framework/*py internals/*py pages/*py",
"build": "gulp",
2019-05-22 21:51:38 +03:00
"watch": "gulp watch",
"deploy": "npm run build && ./scripts/deploy_site.sh `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'` && ./scripts/deploy_site.sh rc",
"staging": "npm run build && ./scripts/deploy_site.sh `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'` cr-status-staging && ./scripts/deploy_site.sh rc cr-status-staging",
"start": "npm run build && ./scripts/start_server.sh"
2015-11-17 20:11:51 +03:00
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleChrome/chromium-dashboard"
},
"bugs": {
"url": "https://github.com/GoogleChrome/chromium-dashboard/issues"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.16.9",
"acorn": ">=6.4.1",
"babel-eslint": "^10.0.3",
"color-string": ">=1.5.5",
2018-06-05 00:56:45 +03:00
"del": "^3.0.0",
"dot-prop": ">=7.1.1",
2019-01-10 19:25:31 +03:00
"eslint": "^5.2.0",
"eslint-config-google": "^0.14.0",
"glob-parent": ">=5.1.2",
2018-06-05 00:56:45 +03:00
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
2019-07-02 00:28:54 +03:00
"gulp-eslint-if-fixed": "^1.0.0",
"gulp-license": "^1.1.0",
"gulp-load-plugins": "^1.6.0",
"gulp-minify-html": "^1.0.6",
2019-01-10 19:25:31 +03:00
"gulp-rename": "^1.4.0",
2018-06-05 00:56:45 +03:00
"gulp-sass": "^4.0.1",
"gulp-uglify-es": "^3.0.0",
"gulp-util": "^3.0.7",
2015-11-01 01:52:56 +03:00
"http2-push-manifest": "^1.0.0",
"ini": ">=1.3.6",
"kind-of": ">=6.0.3",
"lit-analyzer": "^1.1.9",
"lodash": ">=4.17.21",
"lodash.template": ">=4.5.0",
"minimist": ">=0.2.1",
"path-parse": ">=1.0.7",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^9.1.0",
"rollup-plugin-lit-css": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
2018-03-23 21:10:38 +03:00
"sw-precache": "^5.2.1",
"sw-toolbox": "^3.6.0",
"tar": ">=3.2.3",
"trim-newlines": ">=3.0.1"
2018-06-05 00:56:45 +03:00
},
"dependencies": {
"@polymer/app-layout": "^3.1.0",
"@polymer/iron-collapse": "^3.0.1",
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-listbox": "^3.0.1",
"@polymer/paper-ripple": "^3.0.1",
"@polymer/paper-styles": "^3.0.1",
"lit-element": "^2.1.0",
"lit-html": "^1.1.2",
"node-fetch": ">=3.1.1",
"node-sass": ">=4.13.1",
"urijs": ">=1.19.7",
"yargs-parser": ">=13.1.2"
}
2021-06-03 04:12:35 +03:00
}