-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 1.53 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
{
"name": "pwa-installer",
"version": "0.1.0",
"description": "Zero-configuration for installing PWA features.",
"homepage": "https://cjpatoilo.com/pwa-installer",
"repository": "cjpatoilo/pwa-installer",
"license": "MIT",
"author": "CJ Patoilo <[email protected]>",
"private": false,
"bin": "cli.js",
"files": [
"cli.js",
"index.js"
],
"keywords": [
"🐥",
"app",
"application",
"automation",
"cli",
"frontend",
"generator",
"javascript",
"js",
"npm",
"offline",
"pwa",
"progressive-web-app",
"web",
"webapp",
"website"
],
"dependencies": {
"glob": "^7.1.6",
"node-version-assets": "^1.2.2",
"rasper": "latest",
"sw-precache": "^5.2.1"
},
"devDependencies": {
"ava": "^3.11.0",
"boeing": "latest",
"husky": "^4.2.5",
"inject-ga": "^0.2.4",
"lint-staged": "^10.2.11",
"marshmallow": "latest",
"prettier-standard": "^16.4.1",
"rimraf": "^3.0.2"
},
"scripts": {
"deploy": "marshmallow -o docs -i artwork.psd -t 'PWA Installer' -f -m && inject-ga docs/index.html -o docs/index.html -c 'UA-24389952-13' && boeing docs && rimraf docs",
"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"
]
}
}