basant307/AI_Governance_Project
048
1{2 "name": "loupe",3 "version": "3.1.4",4 "description": "Inspect utility for Node.js and browsers",5 "homepage": "https://github.com/chaijs/loupe",6 "license": "MIT",7 "author": "Veselin Todorov <hi@vesln.com>",8 "contributors": [9 "Keith Cirkel (https://github.com/keithamus)"10 ],11 "type": "module",12 "main": "./lib/index.js",13 "module": "./lib/index.js",14 "browser": {15 "./index.js": "./loupe.js",16 "util": false17 },18 "repository": {19 "type": "git",20 "url": "https://github.com/chaijs/loupe"21 },22 "files": [23 "loupe.js",24 "lib/*"25 ],26 "scripts": {27 "bench": "node bench",28 "lint": "eslint .",29 "semantic-release": "semantic-release pre && npm publish && semantic-release post",30 "test": "npm run test:node && npm run test:browser",31 "pretest:browser": "npx playwright install-deps && npx playwright install && npm run build",32 "test:browser": "wtr",33 "pretest:node": "npm run build",34 "test:node": "mocha",35 "build": "npm run build:lib && npm run build:esm-bundle && npm run build:cjs-bundle",36 "build:lib": "tsc",37 "build:esm-bundle": "esbuild --bundle src/index.ts --outfile=loupe.js --format=esm",38 "build:cjs-bundle": "esbuild --bundle src/index.ts --outfile=loupe.js --format=cjs",39 "upload-coverage": "codecov"40 },41 "prettier": {42 "printWidth": 120,43 "tabWidth": 2,44 "useTabs": false,45 "semi": false,46 "singleQuote": true,47 "trailingComma": "es5",48 "arrowParens": "avoid",49 "bracketSpacing": true50 },51 "devDependencies": {52 "@web/dev-server-esbuild": "^1.0.3",53 "@web/test-runner": "^0.19.0",54 "@web/test-runner-playwright": "^0.11.0",55 "benchmark": "^2.1.4",56 "chai": "^5.0.0-alpha.0",57 "codecov": "^3.8.3",58 "core-js": "^3.8.3",59 "cross-env": "^7.0.3",60 "esbuild": "^0.24.2",61 "eslint": "^9.19.0",62 "eslint-config-prettier": "^10.0.1",63 "eslint-config-strict": "^14.0.1",64 "eslint-plugin-filenames": "^1.3.2",65 "eslint-plugin-prettier": "^5.2.3",66 "husky": "^9.1.7",67 "mocha": "^11.1.0",68 "nyc": "^17.1.0",69 "prettier": "^3.0.0",70 "simple-assert": "^2.0.0",71 "typescript": "^5.0.0-beta"72 }73}74 