This repository was archived by the owner on Aug 1, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 1.43 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 1.43 KB
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
{
"name": "pwa-prepare",
"version": "0.0.8",
"description": "Prepare your application for PWA features.",
"homepage": "https://cjpatoilo.com/pwa-prepare",
"repository": "cjpatoilo/pwa-prepare",
"license": "MIT",
"author": "CJ Patoilo <cjpatoilo@gmail.com>",
"bin": "cli.js",
"main": "index.js",
"files": [
"cli.js",
"index.js"
],
"keywords": [
"🐥",
"app",
"application",
"asset",
"assets",
"automation",
"bundle",
"bundles",
"css",
"dependency",
"dependencies",
"frontend",
"generator",
"javascript",
"js",
"npm",
"offline",
"package",
"package manager",
"production",
"pwa",
"progressive-web-app",
"style",
"styles",
"vendor",
"vendors",
"web",
"webapp",
"website"
],
"dependencies": {
"glob": "^7.1.6",
"node-version-assets": "^1.2.2",
"sw-precache": "^5.2.1"
},
"devDependencies": {
"ava": "^3.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier-standard": "^16.4.1"
},
"scripts": {
"lint": "prettier-standard --check",
"test": "ava"
},
"engines": {
"node": "^12.18.0",
"npm": "^6.14.5"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier-standard --format",
"git add"
]
}
}