-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "nextjs-bundle-analysis",
"version": "0.5.0",
"description": "Analyzes each PR's impact on your next.js app's bundle size and displays it using a comment",
"bin": {
"generate": "./generate.js",
"report": "./report.js",
"compare": "./compare.js"
},
"scripts": {
"test": "jest",
"release": "changeset publish",
"release:canary": "changeset publish --tag canary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashicorp/nextjs-bundle-analysis.git"
},
"keywords": [
"next",
"nextjs",
"bundle",
"analysis",
"github",
"action"
],
"author": "Jeff Escalante",
"license": "MPL-2.0",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
]
},
"bugs": {
"url": "https://github.com/hashicorp/nextjs-bundle-analysis/issues"
},
"homepage": "https://github.com/hashicorp/nextjs-bundle-analysis#readme",
"dependencies": {
"filesize": "^7.0.0",
"gzip-size": "^6.0.0",
"inquirer": "^8.1.1",
"mkdirp": "^1.0.4",
"number-to-words": "^1.2.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"jest": "^27.0.6",
"release": "^6.3.0",
"rimraf": "^3.0.2"
}
}