This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 4.09 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "project-health",
"version": "1.0.20",
"description": "A tool to help Polymer team manage repos.",
"private": true,
"scripts": {
"build": "gulp build",
"check-coverage": "nyc check-coverage --lines 70 --functions 70",
"deploy:staging": "gulp build && gcloud app deploy app.yaml --quiet --project github-health-staging",
"deploy:prod": "gulp build && npm --no-git-tag-version version patch && gcloud app deploy app.yaml --quiet --project github-health",
"dev": "gulp dev",
"encrypt-secrets": "tar cvf secrets.tar secrets.json github-health-staging-5ed56f9155c0-travis.json project-health-staging.2018-04-12.private-key.pem project-health.2018-06-28.private-key.pem && travis encrypt-file secrets.tar --add",
"format": "find src -name '*.ts' ! -name 'gql-types.ts' | xargs clang-format --style=file -i",
"generate-gql-types": "apollo-codegen generate 'src/**/*.ts' --schema 'src/types/github-schema.json' --target typescript --addTypename --output 'src/types/gql-types.ts'",
"lint": "tslint 'src/**/*.ts' -t stylish",
"precommit": "npm run format",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "node ./build/server.js",
"test": "RECORD=false npm run test:ava -- --timeout=10sec && npm run check-coverage && npm run lint",
"test:record": "RECORD=true npm run test:ava -- --timeout=1min",
"test:rebaseline": "REBASELINE=true npm run test:ava -- --timeout=1min",
"test:ava": "gulp build && nyc --reporter=text --reporter=html ava 'build/**/*-test.js' --verbose",
"typescript:node": "tsc -p ./tsconfig.json --inlineSources",
"typescript:browser": "tsc -p ./src/client/tsconfig.json --inlineSources",
"typescript:sw": "tsc -p ./src/sw/tsconfig.json --inlineSources"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolymerLabs/project-health.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.11.0",
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.35",
"@types/graphql": "^0.13.0",
"@types/json5": "0.0.29",
"@types/jsonwebtoken": "^7.2.6",
"@types/node": "^9.3.0",
"@types/node-fetch": "^1.6.7",
"@types/ora": "^1.3.1",
"@types/pixelmatch": "^4.0.0",
"@types/pngjs": "^3.3.0",
"@types/request": "^2.0.12",
"@types/sinon": "^4.1.3",
"apollo-codegen": "^0.19.1",
"ava": "^1.0.0-beta.4",
"clang-format": "^1.2.3",
"coveralls": "^3.0.0",
"cssnano": "^3.10.0",
"glob": "^7.1.2",
"gulp": "^4.0.0",
"gulp-htmlmin": "^4.0.0",
"gulp-imagemin": "^4.1.0",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^4.0.2",
"husky": "^0.14.3",
"jimp": "^0.2.28",
"merge-img": "^2.1.2",
"nodemon": "^1.14.12",
"nyc": "^11.4.1",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.2",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.0.0",
"puppeteer": "^1.2.0",
"rollup": "^0.58.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^3.0.0",
"rollup-stream": "^1.24.1",
"sinon": "^4.2.2",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"uglify-es": "^3.3.10",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"@google-cloud/error-reporting": "^0.4.0",
"@google-cloud/firestore": "^0.13.1",
"@types/puppeteer": "^1.0.0",
"@webcomponents/custom-elements": "^1.1.0",
"apollo-cache-inmemory": "^1.1.5",
"apollo-client": "^2.2.0",
"apollo-link": "^1.2.2",
"apollo-link-context": "^1.0.3",
"apollo-link-http": "^1.3.2",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"fs-extra": "^5.0.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.6.1",
"json5": "^1.0.1",
"jsonschema": "^1.2.4",
"jsonwebtoken": "^8.2.1",
"lit-html": "^0.9.0",
"node-fetch": "^2.1.2",
"request": "^2.83.0",
"web-push": "^3.2.5"
},
"nyc": {
"exclude": [
"build/test/**/*"
]
}
}