-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.03 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
{
"name": "webpack-web-app-manifest-plugin",
"version": "6.0.0",
"description": "webpack-web-app-manifest-plugin is a webpack plugin that generates a PWA manifest and integrates with the assets JSON generated by assets-webpack-plugin.",
"main": "./dist/index.js",
"exports": {
"import": "./index.mjs",
"require": "./dist/index.js"
},
"type": "commonjs",
"scripts": {
"build": "yarn tsc",
"clean": "yarn rimraf .test-output dist",
"prepublishOnly": "yarn clean; yarn build",
"test": "yarn tsc --noEmit && yarn jest",
"test-coverage": "yarn test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/tumblr/webpack-web-app-manifest-plugin.git"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"pwa",
"webpack",
"web",
"app",
"manifest"
],
"author": "Paul Rehkugler",
"license": "MIT",
"dependencies": {
"@types/web-app-manifest": "^1.0.2"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/node": "^12.20.39",
"file-loader": "^6.2.0",
"glob": "^7.2.0",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.4",
"webpack": "^5.0.0"
},
"jest": {
"testMatch": [
"**/*.tests.js"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"watchPathIgnorePatterns": [
"dist"
],
"testURL": "http://localhost/",
"coverageDirectory": "./reports/coverage",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "./reports",
"outputName": "jest.xml"
}
]
]
},
"packageManager": "[email protected]"
}