forked from GoogleChrome/workbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.52 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
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "workbox",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"version": "gulp build && git add -A packages",
"gulp": "gulp",
"build": "gulp build",
"lint": "gulp lint",
"test_server": "gulp test_server",
"test_node": "gulp test_node",
"test_integration": "gulp test_integration"
},
"nyc": {
"include": [
"packages/**/*"
],
"extension": [
".mjs",
".js"
],
"exclude": [
"packages/workbox-core/models/messages/messages.mjs"
]
},
"husky": {
"hooks": {
"pre-push": "gulp 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/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@google-cloud/storage": "^5.2.0",
"@octokit/rest": "^15.12.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.1",
"@types/babel__core": "^7.1.12",
"@types/babel__preset-env": "^7.9.1",
"@types/common-tags": "^1.8.0",
"@types/estree": "0.0.45",
"@types/fs-extra": "^9.0.5",
"@types/lodash": "^4.14.165",
"@types/stringify-object": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"acorn": "^8.0.1",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"babylon": "^6.18.0",
"body-parser": "^1.19.0",
"bytes": "^3.1.0",
"camelcase": "^6.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-match-pattern": "^1.2.0",
"chalk": "^4.1.0",
"clear-module": "^4.1.1",
"comlink": "^4.3.0",
"common-tags": "^1.8.0",
"copy-webpack-plugin": "^6.0.3",
"coveralls": "^3.1.0",
"del": "^5.1.0",
"depcheck": "^1.2.0",
"eslint": "^7.6.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-jsdoc": "^30.2.2",
"execa": "^4.0.3",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"globby": "^11.0.1",
"gulp": "^4.0.2",
"gzip-size": "^5.1.1",
"html-webpack-plugin-v4": "npm:html-webpack-plugin@^4.5.0",
"html-webpack-plugin-v5": "npm:html-webpack-plugin@^5.0.0-alpha.14",
"husky": "^4.2.5",
"idb": "^6.0.0",
"jsdoc": "^3.6.5",
"jsdoc-baseline": "^0.1.5",
"lerna": "^3.22.1",
"memory-fs": "^0.5.0",
"minimist": "^1.2.5",
"mocha": "^8.1.1",
"module-alias": "^2.2.2",
"nunjucks": "^3.2.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"require-dir": "^1.2.0",
"rollup": "^2.43.1",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"selenium-assistant": "^6.1.0",
"semver": "^7.3.2",
"serve-index": "^1.9.1",
"service-worker-mock": "^1.9.3",
"sinon": "^9.0.3",
"tempy": "^0.6.0",
"type-fest": "^0.20.2",
"typescript": "^4.1.5",
"typescript-json-schema": "^0.50.1",
"upath": "^1.2.0",
"webpack-v4": "npm:webpack@^4.44.2",
"webpack-v5": "npm:webpack@^5.9.0",
"worker-plugin": "^5.0.0"
}
}