Initial commit

This commit is contained in:
Marcelo
2025-11-20 15:27:34 -06:00
commit cc72c9fc5d
3221 changed files with 737477 additions and 0 deletions

32
node_modules/inspect-property/package.json generated vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "inspect-property",
"version": "0.0.6",
"description": "Inspects a Property and returns useful informations about it (e.g. nested properties, function inspection, property descriptor, value, type, constructor)",
"main": "lib/inspect-property.js",
"author": {
"name": "Diego ZoracKy",
"email": "diego.zoracky@gmail.com",
"url": "https://github.com/DiegoZoracKy/"
},
"keywords": [
"inspect",
"property",
"api",
"methods",
"properties"
],
"scripts": {
"test": "mocha ./test/main.test.js",
"test:all": "mocha ./test -b"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.3.0"
},
"dependencies": {
"for-each-property": "0.0.4",
"for-each-property-deep": "0.0.3",
"inspect-function": "^0.3.1"
}
}