forked from GoogleChrome/chromium-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "chromestatus-dashboard",
"description": "Chrome platform status - chromestatus.com",
"homepage": "https://www.chromestatus.com",
"private": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"deps": "pip install -t lib -r requirements.txt --upgrade",
"travis-deps": "pip install -t lib -r requirements.travis.txt --upgrade",
"dev-deps": "pip install -r requirements.dev.txt --upgrade",
"test": "python -m unittest discover -p *_test.py -s tests -t . -b",
"coverage": "python -m coverage erase && python -m coverage run -m unittest discover -p *_test.py -s tests -b && python -m coverage html",
"lint": "gulp lint-fix && lit-analyzer \"static/elements/chromedash-!(featurelist)*.js\"",
"build": "gulp",
"watch": "gulp watch",
"deploy": "npm run build && ./scripts/deploy_site.sh `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'`",
"staging": "npm run build && ./scripts/deploy_site.sh `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'` cr-status-staging",
"start": "npm run build && ./scripts/start_server.sh"
},
"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.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"acorn": ">=6.4.1",
"babel-eslint": "^10.0.3",
"del": "^3.0.0",
"dot-prop": ">=5.1.1",
"eslint": "^5.2.0",
"eslint-config-google": "^0.9.1",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-eslint-if-fixed": "^1.0.0",
"gulp-license": "^1.1.0",
"gulp-load-plugins": "^1.6.0",
"gulp-minify-html": "^1.0.6",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.1",
"gulp-uglify-es": "^1.0.4",
"gulp-util": "^3.0.7",
"http2-push-manifest": "^1.0.0",
"ini": ">=1.3.6",
"kind-of": ">=6.0.3",
"lighthouse-ci": "https://github.com/ebidel/lighthouse-ci",
"lit-analyzer": "^1.1.9",
"lodash": ">=4.17.19",
"lodash.template": ">=4.5.0",
"minimist": ">=0.2.1",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.1.0",
"rollup-plugin-lit-css": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sw-precache": "^5.2.1",
"sw-toolbox": "^3.6.0"
},
"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": ">=2.6.1",
"node-sass": ">=4.13.1",
"urijs": ">=1.19.6",
"yargs-parser": ">=13.1.2"
}
}