forked from NejcZdovc/bundle-size-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "bundle-size-diff",
"version": "1.0.0",
"description": "Github action for getting bundle size diffs for PR's",
"main": "index.js",
"scripts": {
"lint": "standard",
"build": "ncc build index.js --license licenses.txt",
"build-demo": "webpack --config demo/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NejcZdovc/bundle-size-diff.git"
},
"keywords": ["webpack", "github action", "actions", "diff"],
"author": "Nejc Zdovc",
"license": "MIT",
"bugs": {
"url": "https://github.com/NejcZdovc/bundle-size-diff/issues"
},
"homepage": "https://github.com/NejcZdovc/bundle-size-diff#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"filesize": "^6.1.0",
"webpack-stats-diff": "^1.3.0"
},
"devDependencies": {
"@vercel/ncc": "^0.25.1",
"standard": "^16.0.3",
"webpack": "^5.10.0",
"webpack-bundle-analyzer": "^4.2.0",
"webpack-cli": "^4.2.0"
},
"standard": {
"ignore": [
"dist"
]
}
}