-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "gatsby-plugin-zopfli",
"version": "2.0.0",
"description": "Gatsby plugin for preparing zopfli-compressed versions of assets",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "standard && tap test/*.test.js --coverage --100",
"test:debug": "standard && tap test/*.test.js --coverage --save-fixture",
"test:report": "standard && tap test/*.test.js --coverage --coverage-report=html --100",
"posttest": "tap --coverage --coverage-report=lcovonly"
},
"keywords": [
"compress",
"gatsby",
"gatsby-plugin",
"gzip",
"zopfli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ovhemert/gatsby-plugin-zopfli.git"
},
"author": "Osmond van Hemert <hello@ovhemert.dev> (https://ovhemert.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ovhemert/gatsby-plugin-zopfli/issues"
},
"homepage": "https://github.com/ovhemert/gatsby-plugin-zopfli#readme",
"dependencies": {
"@gfx/zopfli": "^1.0.15",
"glob": "^8.0.3",
"mkdirp": "^1.0.4",
"piscina": "^3.2.0"
},
"devDependencies": {
"sinon": "^9.0.2",
"standard": "^14.3.4",
"tap": "^14.10.8"
}
}