-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 KB
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
{
"name": "@adobe/sizewatcher",
"version": "1.4.1",
"description": "Warns if your pull requests introduce large size increases.",
"main": "index.js",
"bin": {
"sizewatcher": "index.js"
},
"author": "Adobe",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/sizewatcher.git"
},
"keywords": [
"size",
"check",
"watch",
"ci",
"continuous",
"integration",
"pull-request"
],
"scripts": {
"test": "DEBUG=sizewatcher* nyc -r=text -r=lcov mocha",
"posttest": "eslint .",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"sizewatcher": "DEBUG=sizewatcher* node ./index.js",
"clean": "rm -rf test/checkout/*/build"
},
"devDependencies": {
"@adobe/eslint-config-asset-compute": "^1.3.0",
"coveralls": "^3.1.0",
"eslint": "^8.0.0",
"mocha": "^11.0.0",
"mock-fs": "^5.5.0",
"nyc": "^17.0.0",
"supports-color": "^8.1.1"
},
"dependencies": {
"@octokit/rest": "19.0.3",
"debug": "4.4.3",
"deepmerge": "4.3.1",
"get-folder-size": "5.0.0",
"glob": "10.3.5",
"js-yaml": "4.1.1",
"pretty-bytes": "5.6.0",
"require-dir": "1.2.0",
"simple-git": "3.22.0",
"tmp": "0.2.7",
"xbytes": "1.9.1"
},
"overrides": {
"whatwg-url": "14.2.0"
}
}