forked from GoogleChrome/workbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.23 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
112
113
{
"name": "workbox",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"bot": "pr-bot",
"coverage-report": "nyc report --reporter lcov --reporter text",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"demos-deploy": "firebase deploy --project workbox-demos",
"demos-serve": "firebase serve --only hosting,functions --project workbox-demos",
"lint": "eslint \"**/*.{js,mjs}\" --ignore-path .gitignore",
"local-jsdoc": "jsdoc",
"local-lerna": "lerna",
"local-tsc": "tsc",
"test": "nyc --clean false --silent mocha --timeout 60000"
},
"nyc": {
"include": [
"packages/**/*"
],
"extension": [
".mjs",
".js"
],
"exclude": [
"packages/workbox-core/models/messages/messages.mjs"
]
},
"pre-push": [
"lint"
],
"version": "0.0.0",
"description": "Top-level scripts and dependencies for the workbox monorepo. Not meant to be published to npm.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChrome/workbox.git"
},
"author": "Google's Web DevRel Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoogleChrome/workbox/issues"
},
"homepage": "https://github.com/GoogleChrome/workbox#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@google-cloud/storage": "^2.0.3",
"@octokit/rest": "^15.12.0",
"acorn": "^6.1.1",
"archiver": "^3.0.0",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-async-to-promises": "^0.8.4",
"babylon": "^6.18.0",
"body-parser": "^1.18.3",
"bytes": "^3.0.0",
"camelcase": "^5.0.0",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"clear-require": "^2.0.0",
"comlinkjs": "^3.0.3",
"common-tags": "^1.8.0",
"copy-webpack-plugin": "^4.5.2",
"coveralls": "^3.0.2",
"del": "^4.1.1",
"depcheck": "^0.6.11",
"eslint": "^5.6.0",
"eslint-config-google": "^0.10.0",
"eslint-plugin-header": "^2.0.0",
"eslint-plugin-jsdoc": "^3.8.0",
"express": "^4.16.3",
"firebase-tools": "^4.2.1",
"fs-extra": "^7.0.0",
"glob": "^7.1.3",
"globby": "^9.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gzip-size": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"jsdoc": "^3.5.5",
"jsdoc-baseline": "git://github.com/hegemonic/baseline.git#c492ee17",
"lerna": "^3.4.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"nunjucks": "^3.1.6",
"nyc": "^13.0.1",
"pr-bot": "0.2.0",
"pre-push": "^0.1.1",
"proxyquire": "^2.1.0",
"require-dir": "^1.0.0",
"rollup": "^1.15.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.21.1",
"selenium-assistant": "^6.0.0",
"semver": "^5.5.1",
"serve-index": "^1.9.1",
"service-worker-mock": "^1.9.3",
"sinon": "^6.3.4",
"tempy": "^0.2.1",
"typescript": "^3.5.3",
"upath": "^1.1.2",
"url-search-params": "^1.1.0",
"webpack": "4.19.1",
"worker-plugin": "^3.1.0"
}
}