This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "webpack-pwa-manifest",
"version": "4.3.0",
"description": "Progressive Web Application (PWA) Manifest Generator",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/arthurbergmz/webpack-pwa-manifest.git"
},
"keywords": [
"pwa",
"manifest",
"gen",
"generator",
"webpack",
"webapp",
"manifest.json",
"progressive",
"web",
"app",
"application"
],
"scripts": {
"build": "npx babel src --out-dir dist",
"clean": "rimraf -rf tests/*/output && rimraf -rf dist",
"clean:build": "npm run clean && npm run build",
"test": "npm run clean:build && node tests/index.js",
"test:debug": "npm run clean:build && node --inspect-brk ./tests/index.js"
},
"author": "Arthur A. Bergamaschi <[email protected]>",
"license": "MIT",
"dependencies": {
"css-color-names": "1.0.1",
"jimp": "0.16.1",
"mime": "2.4.6"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"babel-eslint": "10.1.0",
"eslint": "7.13.0",
"html-webpack-plugin": "4.5.0",
"list-directory-contents": "0.0.3",
"rimraf": "3.0.2",
"webpack": "5.5.0",
"webpack-cli": "4.2.0"
},
"files": [
"dist",
"CHANGELOG.md",
"index.d.ts",
"index.js",
"LICENSE",
"package-lock.json",
"package.json",
"README.md"
],
"engines": {
"node": ">=6.0.0"
}
}