Add some dependencies for uploading artifacts

This commit is contained in:
Edoardo Pirovano 2021-05-24 17:26:13 +01:00 committed by Edoardo Pirovano
parent 1d05ad7576
commit 0cbd4b56d3
111 changed files with 9299 additions and 3597 deletions

33
node_modules/tmp-promise/package.json generated vendored Normal file
View file

@ -0,0 +1,33 @@
{
"name": "tmp-promise",
"version": "2.1.1",
"description": "The tmp package with promises support and disposers.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"mocha": "mocha",
"check-types": "tsd",
"test": "npm run mocha && npm run check-types"
},
"keywords": [
"tmp",
"promise",
"tempfile",
"mkdtemp",
"mktemp"
],
"author": "Benjamin Gruenbaum and collaborators.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/benjamingr/tmp-promise.git"
},
"dependencies": {
"tmp": "0.1.0"
},
"devDependencies": {
"@types/tmp": "^0.1.0",
"mocha": "^6.1.4",
"tsd": "^0.7.2"
}
}