-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "gatsby-plugin-webpack-size",
"version": "2.0.1",
"description": "Logs your production bundle sizes in a CI friendly way",
"main": "index.js",
"scripts": {
"lint": "eslint gatsby-node.js",
"format": "prettier --write gatsby-node.js"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"webpack",
"bundle"
],
"author": "Benedikt Rötsch <[email protected]>",
"bugs": {
"url": "https://github.com/axe312ger/gatsby-plugin-webpack-size/issues"
},
"homepage": "https://github.com/axe312ger/gatsby-plugin-webpack-size/",
"repository": {
"type": "git",
"url": "https://github.com/axe312ger/gatsby-plugin-webpack-size.git"
},
"license": "MIT",
"files": [
"readme.md",
"gatsby-node.js",
"index.js"
],
"dependencies": {
"size-plugin": "^3.0.0"
},
"peerDependencies": {
"gatsby": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.2.1"
}
}