This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
126 lines (126 loc) · 3.05 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "my-awesome-site",
"version": "2.0.0",
"description": "My awesome site, built on Chrome OS's static site scaffold",
"main": "src/js/main.js",
"contributors": [
"Sam Richard <[email protected]> (https://snugug.com)"
],
"license": "Apache-2.0",
"scripts": {
"prestart": "del public",
"start": "run-s dev",
"prebuild": "del public",
"build": "better-npm-run build",
"postbuild": "better-npm-run postbuild",
"pretest": "run-s test:lint",
"test": "nyc ava",
"server": "gulp dev",
"dev": "better-npm-run dev",
"compile": "better-npm-run compile",
"compile:watch": "run-s 'compile -- --watch'",
"js": "rollup -c",
"js:sw": "rollup -c rollup.sw.js",
"js:lint": "eslint src gulpfile.js rollup.config.js rollup.sw.js",
"js:watch": "run-p 'js -- -w' 'js:sw -- -w'",
"sass": "gulp sass",
"build:static": "gulp build",
"static": "run-s compile build:static",
"lint": "better-npm-run lint",
"test:lint": "eslint tests",
"gulp": "gulp"
},
"betterScripts": {
"build": {
"command": "run-p js static",
"env": {
"NODE_ENV": "production",
"NODE_ICU_DATA": "node_modules/full-icu"
}
},
"postbuild": {
"command": "run-s js:sw",
"env": {
"NODE_ENV": "production"
}
},
"dev": {
"command": "run-p *:watch server",
"env": {
"NODE_ICU_DATA": "node_modules/full-icu"
}
},
"compile": {
"command": "eleventy",
"env": {
"NODE_ICU_DATA": "node_modules/full-icu"
}
},
"lint": {
"command": "run-p *:lint sass",
"env": {
"NODE_ENV": "production"
}
}
},
"ava": {
"files": [
"tests/**/*",
"!tests/lighthouse.js"
],
"helpers": [
"tests/helpers/**/*"
],
"compileEnhancements": false,
"verbose": false,
"require": [
"esm"
]
},
"nyc": {
"include": [
"src/js/**/*.js"
],
"all": true
},
"husky": {
"hooks": {
"pre-commit": "run-s lint"
}
},
"devDependencies": {
"ava": "^2.4.0",
"better-npm-run": "^0.1.1",
"del-cli": "^2.0.0",
"eslint": "^6.5.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-ava": "^8.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"husky": "^3.0.7",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"rollup": "^1.22.0",
"sinon": "^7.5.0"
},
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"full-icu": "^1.3.0",
"iso-639-1": "^2.1.0",
"service-worker-i18n-redirect": "^1.0.0",
"service-worker-includes": "^1.0.0",
"static-site-scaffold": "^3.0.1",
"workbox-cacheable-response": "^5.0.0-rc.1",
"workbox-expiration": "^5.0.0-rc.1",
"workbox-precaching": "^5.0.0-rc.1",
"workbox-routing": "^5.0.0-rc.1",
"workbox-strategies": "^5.0.0-rc.1"
},
"private": true
}