Fix issue with dependencies

This commit is contained in:
Edoardo Pirovano 2022-04-01 17:36:03 +01:00
parent 935969c6f7
commit 8a00ed086d
No known key found for this signature in database
GPG key ID: 047556B5D93FFE28
10 changed files with 296 additions and 0 deletions

37
node_modules/array-uniq/package.json generated vendored Normal file
View file

@ -0,0 +1,37 @@
{
"name": "array-uniq",
"version": "1.0.3",
"description": "Create an array without duplicates",
"license": "MIT",
"repository": "sindresorhus/array-uniq",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"array",
"arr",
"set",
"uniq",
"unique",
"es6",
"duplicate",
"remove"
],
"devDependencies": {
"ava": "*",
"es6-set": "^0.1.0",
"require-uncached": "^1.0.2",
"xo": "*"
}
}