forked from arthurbergmz/webpack-pwa-manifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.49 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.2.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",
"test": "npm run clean && npm run build && node tests/index.js",
"test:debug": "npm run clean && npm run build && node --inspect-brk ./tests/index.js"
},
"author": "Arthur A. Bergamaschi <arthurbergmz@gmail.com>",
"license": "MIT",
"dependencies": {
"css-color-names": "^1.0.0",
"jimp": "^0.6.0",
"mime": "^2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": ">=3.2.0",
"list-directory-contents": "0.0.3",
"rimraf": "^3.0.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"files": [
"dist",
"CHANGELOG.md",
"index.d.ts",
"index.js",
"LICENSE",
"package-lock.json",
"package.json",
"README.md"
],
"engines": {
"node": ">=6.0.0"
}
}