Add telemetry for TRAP caching

This commit is contained in:
Edoardo Pirovano 2022-08-15 14:44:43 +01:00
parent ca10a6d552
commit 4139682b64
No known key found for this signature in database
GPG key ID: 047556B5D93FFE28
63 changed files with 1195 additions and 126 deletions

33
node_modules/get-folder-size/package.json generated vendored Normal file
View file

@ -0,0 +1,33 @@
{
"name": "get-folder-size",
"version": "2.0.1",
"description": "Get the size of a folder by recursively iterating through all its sub(files && folders).",
"main": "index.js",
"bin": {
"get-folder-size": "bin/get-folder-size"
},
"dependencies": {
"gar": "^1.0.4",
"tiny-each-async": "2.0.3"
},
"devDependencies": {
"husky": "^0.10.1",
"mocha": "^5.2.0",
"proxyquire": "^1.7.3",
"should": "^7.1.1"
},
"scripts": {
"test": "mocha",
"precommit": "npm test"
},
"keywords": [
"folder",
"size"
],
"repository": {
"type": "git",
"url": "https://github.com/alessioalex/get-folder-size.git"
},
"author": "Alexandru Vladutu <alexandru.vladutu@gmail.com>",
"license": "MIT"
}