mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
3036 lines
129 KiB
JSON
3036 lines
129 KiB
JSON
|
{
|
||
|
"_id": "loupe",
|
||
|
"_rev": "30-db9160a67ff34e85abda20df03afd88a",
|
||
|
"name": "loupe",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"dist-tags": { "latest": "2.3.4" },
|
||
|
"versions": {
|
||
|
"0.0.1": {
|
||
|
"name": "loupe",
|
||
|
"version": "0.0.1",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"main": "./lib/loupe.js",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"scripts": {
|
||
|
"test": "hydro",
|
||
|
"readme": "jsmd README.md",
|
||
|
"coverage": "istanbul cover _hydro"
|
||
|
},
|
||
|
"repository": { "type": "git", "url": "https://github.com/chaijs/loupe" },
|
||
|
"devDependencies": {
|
||
|
"hydro": "*",
|
||
|
"hydro-dot": "*",
|
||
|
"hydro-tdd": "*",
|
||
|
"hydro-chai": "*",
|
||
|
"istanbul": "~0.1.44",
|
||
|
"component": "*",
|
||
|
"chai": "*",
|
||
|
"jsmd": "~0.2.0"
|
||
|
},
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"license": "MIT",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@0.0.1",
|
||
|
"dist": {
|
||
|
"shasum": "883854ffa4ae1ff19f29ab862ec5d14054fc6a7c",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-0.0.1.tgz",
|
||
|
"integrity": "sha512-WOP4GRejqAlrvPm4zQq9N+uivMOfJv4eaMRayde3CJeXo5MXqZ8Y7XVzhVYhA5zHw62oKDDbrNTC0/NlJA2M5A==",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEQCICdIxwHhQoHk67Jmej+9gy7VoCJD8XpIiWXCJw/BRZnqAiBpFQScAg5Qtz6Do/qJ3O6mLp+MJsTCkVGtO4X93jTVXA=="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_from": ".",
|
||
|
"_npmVersion": "1.3.8",
|
||
|
"_npmUser": { "name": "vesln", "email": "hi@vesln.com" },
|
||
|
"maintainers": [{ "name": "vesln", "email": "hi@vesln.com" }],
|
||
|
"directories": {}
|
||
|
},
|
||
|
"1.0.0": {
|
||
|
"name": "loupe",
|
||
|
"version": "1.0.0",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.9.0",
|
||
|
"@babel/preset-env": "^7.9.0",
|
||
|
"@commitlint/cli": "^8.3.5",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.6.5",
|
||
|
"commitlint-config-angular": "^8.3.4",
|
||
|
"core-js": "^3.6.4",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.1.2",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.2.3",
|
||
|
"karma": "^4.4.1",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.1",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^1.3.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^1.3.0",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^2.0.2",
|
||
|
"mocha": "^7.1.1",
|
||
|
"nyc": "^15.0.0",
|
||
|
"prettier": "^2.0.2",
|
||
|
"rollup": "^2.1.0",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"@rollup/plugin-commonjs": "^11.0.2",
|
||
|
"rollup-plugin-istanbul": "^2.0.1",
|
||
|
"@rollup/plugin-node-resolve": "^7.1.1",
|
||
|
"semantic-release": "^17.0.4",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "71b5f78d98381479b48e61c06dc44b37bc201da0",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@1.0.0",
|
||
|
"_nodeVersion": "11.11.0",
|
||
|
"_npmVersion": "6.7.0",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-fYpLePicpftHDWJXhr4YOpl56LCIH/si1u7G22ouay7M4rnoGW9palHqn8gJBpVmgqURkVIY7DoxPjgZBy7nrg==",
|
||
|
"shasum": "08a9a9fa6ad3e4142236424e985390b7e2be2530",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-1.0.0.tgz",
|
||
|
"fileCount": 34,
|
||
|
"unpackedSize": 2195084,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoB1LCRA9TVsSAnZWagAARLoP/2sNGk3ZXRAVdW14fnUw\nJMwpRica3qxAWwLExud7NFYa0YfJklNmlbDY5dQ8kQe1YL3d6B/Be7wJu4W8\nq+crwaz3fRuwDVkz9gqTmJ6XS6gvrOe8O8mOhlspDPOLzmJZNCbjnzu5W4V3\nppLMuSIc6L8CJAVa4KxRBC+cAdBiSl93jSsD6uaeYrm8MtIlK/djQeMqv7h+\naoAv8DvZ7qnpo+v97AL40CCihGmqwIcM8KU1rraeCJCpT83vr6rQ1jY1uuD0\nf5sZhQpsJj5Q/uFUkBI35u7+8PkpagkRDpC3prxJativSsfXNrD0EfaSeF6e\nYXcK1x4fli56KmqPF8QPzZNvHOzoG0T7FFaANMEfZtv2hnI2zKxPssB+69OK\nDJDotj6AG1lJRcRr52EbEoOk3XFluBD46bO4ke2cHNyqqnqwQuNUBTozrX5F\n7gz6zPa9tKqYXsqD0NJyu2tN0c7xwHb/K9jtPyVdKgPlg9GJ+dYu278jPWRS\n4qO8MVf5+UzCaXlRe6Sc7J6vG/UbCsXH7wTwyQkIThVthh2WaDkWzpq+a+Tr\nFaMqOSUF2lQ+c8dKX8M5kvkP2oi15tuJFl1C3Ou/yLLr0Ggp0OX1b/G7AkQt\nfJZgoWJszDjO5/U3pelkDQr+UWRag1Ji8Ts06/hnQflGw1umng/oz3X7AywS\nmes/\r\n=zHgU\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEUCIDG8omMQw0xDX1RiufcRvZMGVIPAlVMIBB4ISOvDlX/uAiEAw/iUiJZEtlIR0MBlGQvM6k+4XdRNfRdGtEo9so/IjSk="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmUser": { "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_1.0.0_1587551563465_0.327036733847607"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"1.0.1": {
|
||
|
"name": "loupe",
|
||
|
"version": "1.0.1",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.9.0",
|
||
|
"@babel/preset-env": "^7.9.0",
|
||
|
"@commitlint/cli": "^8.3.5",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.6.5",
|
||
|
"commitlint-config-angular": "^8.3.4",
|
||
|
"core-js": "^3.6.4",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.1.2",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.2.3",
|
||
|
"karma": "^4.4.1",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.1",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^1.3.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^1.3.0",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^2.0.2",
|
||
|
"mocha": "^7.1.1",
|
||
|
"nyc": "^15.0.0",
|
||
|
"prettier": "^2.0.2",
|
||
|
"rollup": "^2.1.0",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"@rollup/plugin-commonjs": "^11.0.2",
|
||
|
"rollup-plugin-istanbul": "^2.0.1",
|
||
|
"@rollup/plugin-node-resolve": "^7.1.1",
|
||
|
"semantic-release": "^17.0.4",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "e69a6b278d7f12ec66339a6bbc0862b320326723",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@1.0.1",
|
||
|
"_nodeVersion": "12.16.2",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-tSkUhtz01duSpUy0AmOIM23meH5wxTqpHeKLbFy5LOAQ7ebS9eThSLtaiymHWqz5kYp5ySJOSI7hxuRMlGUBXw==",
|
||
|
"shasum": "890fa5e72400a3b89ee7d176bb27292c41a1c670",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-1.0.1.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 68794,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoC8hCRA9TVsSAnZWagAATnkQAKUcZkE9V0Yh+KqJs209\n0oUk10vQHHQYTLQHLwUOBsXS2lkY3pMgfBwW9ClJI2IcEwym4ORZvc/ACrMQ\n0fmXGHRwz1FR52aGbNG/0liXewHwFjO0knHW38hIh5oRcMrnibX8Gm3IK5+I\nJp7C3fCurCD706+BtqE+rrgGywk0GsOe8UDYlUUSwLqiBabC/+gckWGC4nuF\nTWQxmW4+21/Hm5V4Lx+7XAuKLJ2CH2gP7nWvbd7BewANTcKba94nwZbjyQMV\ntIOvFUsqP6SKlgCUVMPuQ/puaZGNgkc+Y/cIw5IvyQJQI2wPPCZ5gnPZGAEM\n+K2hcNTi+lGeiKR0alhWuZSFeFev5eQ8vsLjEMieynKfTA5xiLgydhs/M6vo\nAmmt5s5VZQ8GJNKoqdNtl/Jyfnh0nsbe2QiWSKVWVgyO/mdLdCkY4RUI2h1Z\nSFzkFw3oeN6PfxaA5UCOaiZ6USL+dNu8FriTpk14QrzWpYX5fiKNIEDQKMcz\nGUIgW81XeSmr02c4Dwm356gtptFZtmmmJEQyQrOj+9VPmCXVB7uLBqZCgWOl\ney+ddA5UDKrPwnAsc9JDMUwEXK2P/eROgfvdj4uhUWqA17JkHWJkhxg4d9Dp\nfE280+//sIsXTL0+0P8PuGYSTNjofEt2hjoHTRU9vaG10svls8YKtuKdnxlS\nx0PA\r\n=aSXO\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEQCICwJtYwKZRKLPkVW4+W2a6s+YvxTXApy7vAlfqy7PhHtAiBRNlkl9bY2+Ae6cLakiet5+JN2OuSU5ywOXHnDj4ZebQ=="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_1.0.1_1587556129361_0.41564494473251723"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"1.0.2": {
|
||
|
"name": "loupe",
|
||
|
"version": "1.0.2",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.9.0",
|
||
|
"@babel/preset-env": "^7.9.0",
|
||
|
"@commitlint/cli": "^8.3.5",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.6.5",
|
||
|
"commitlint-config-angular": "^8.3.4",
|
||
|
"core-js": "^3.6.4",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.1.2",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.2.3",
|
||
|
"karma": "^4.4.1",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.1",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^1.3.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^1.3.0",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^2.0.2",
|
||
|
"mocha": "^7.1.1",
|
||
|
"nyc": "^15.0.0",
|
||
|
"prettier": "^2.0.2",
|
||
|
"rollup": "^2.1.0",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"@rollup/plugin-commonjs": "^11.0.2",
|
||
|
"rollup-plugin-istanbul": "^2.0.1",
|
||
|
"@rollup/plugin-node-resolve": "^7.1.1",
|
||
|
"semantic-release": "^17.0.4",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "20087b8deadb62b1fd7d3d6c21819380158861d7",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@1.0.2",
|
||
|
"_nodeVersion": "12.16.2",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-NtbDKfRIfq8T0p11kHJ/Wk6/2Uw/pvvwAawHWpYY+tl/ptstrSWpOKnK8BEw2qp9XvIl2K78+NdjpcHkmAiIFg==",
|
||
|
"shasum": "3b0c5ecfbb1bc8560e9c53a5bbcc5908ce956a77",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-1.0.2.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68762,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoFImCRA9TVsSAnZWagAAi9AP/19fu96kD7erPPA4W6AF\nCIObVuMJb/zDPsIeubW5NVCSOBil2W861OUkH3sXOM3qI4SuGiRvtfrIycfb\nN9RKQfyLvqlZtV4IXz8MMT2jWU4FwfoOc/CXr2i3BHNeA1nF3YZS2FFxtTSf\n862fKId4QXInvrYUZy9LBwvOZuoSGFIdBtMbwt1n/xn2Y2CoMDbfuv709jSU\nSW4tNLZQpiul1i9WmtYNuD6pVpVicabW4uyIY/3hxTTftdRUPymH6d/6dUTj\noN0YwfdoiZE7hNWASo8Ia5K6EFXx1iVsCYvReDr9/AHWhBOAr9AaYcfJ03qs\nv9Eev/gFhAD6CMQHshZ24+2+SAnZiYfHpMPKmoticAKr3LQaqCIshRGdFkwN\nV4NUe9ZiU7dkEjR+gDkdlAaRjzZIGlYkZ6w+vFr1BMAs77WQ6Oh7Jugp62oM\nRfftuZ6G+73pFnmRnEePoJe/ZnslOfoHqbzpRuggI3T8YKDZpNlYMnPmRoHy\ngHhwM4Rp2/Cv7cxmRwjmV0oO+KzG+mfKqlj1VIiwUP825lxhtaXc7pc0eQRO\nzL6cnCQ3qi6Hy3HOssHtQysZz1m/39suY8sdQrs6gKIM32YlZhtwXc5DUUD4\nIcF/IUzBwpbI1d+q52bdiZc8jnpHWPcAw0aeW8RW7Ece1krjc78VtdpXj5A5\nYlFa\r\n=9UVj\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEQCIAX33J8+gotkALz4JktLj+tPvwJBgKK1/qt8xloI9Pm4AiBcBGbYZWyCwQKGW8xISbzA/cE/t1+Zu1eHad/ps5US7A=="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_1.0.2_1587565093777_0.6857054243052472"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.0.0": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.0.0",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.9.0",
|
||
|
"@babel/preset-env": "^7.9.0",
|
||
|
"@commitlint/cli": "^8.3.5",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.6.5",
|
||
|
"commitlint-config-angular": "^8.3.4",
|
||
|
"core-js": "^3.6.4",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.1.2",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.2.3",
|
||
|
"karma": "^4.4.1",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.1",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^1.3.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^1.3.0",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^2.0.2",
|
||
|
"mocha": "^7.1.1",
|
||
|
"nyc": "^15.0.0",
|
||
|
"prettier": "^2.0.2",
|
||
|
"rollup": "^2.1.0",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"@rollup/plugin-commonjs": "^11.0.2",
|
||
|
"rollup-plugin-istanbul": "^2.0.1",
|
||
|
"@rollup/plugin-node-resolve": "^7.1.1",
|
||
|
"semantic-release": "^17.0.4",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "7f77faa0ca815f6cd456b227b535e319316db14d",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.0.0",
|
||
|
"_nodeVersion": "14.9.0",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-DVv/zlnuBB638A4OHfknWN2zeGHvEEm3XYkFH/CeP4QEagtQoKHsCt75GQ7aqhAOLRn8edvYNGULD040h4vcVw==",
|
||
|
"shasum": "85f829a3ead5e4bbe848be2f1ea442f9bb96e084",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.0.0.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68762,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCMMMCRA9TVsSAnZWagAA4jgP+QDvLS1sG7v8vHszC1bL\n2Gkh+F3+2SiEUEAqxI1K82UKBhh0BZrQ3H18HBooQdir5Mb6sQVektpX6dgh\n6dHIy5GWAdmB+REL/+ZSoDXIolkJp1EkyT7j2/5yfT/0GiJVnFIXbQSrp5m+\nlbWmI8zW1HzVm9gywo8Y+5ShUXSgB04KkkH30rnDnlWvvnTEtFUWK0p0+tKu\n8y3bQ4vXXdp6ntwc0y1ni1AV7UOPFGidCiDU2ooo+/CasfPHiCFZt1KDXSOg\nieUWVXGhTCIiof3gDP9U2cwBvEH1KY7Qf0+BexSIqYDuCryq99rSKnP21v4u\n0iylMuP1mIWajxhzsQNkkCg7A+K8W6PNMNIxPy2hJM//IYpWBf2qvrhTaed6\nZYiW9yiwiMlsh1D6cWXbhhfzOHvzFLFTdPcvYdm4eOsIV9jLZk0cIgHJnHXU\niSrRjTU8tMpPrcORBkd93x0X6yFWRJatiZhsTVy+nA0yMRJ/W1yYSpqGp7Pj\n05aY1YwCP22909SgRJ+PF1QFsG/gUoL2wB1Uj7NX8xTXw6GCsDMKRkZOVRA6\nPykNbTXa/iu+BlljjBoQ53Gx73UhnI+iyrK3NIdT6F/V5NKf+O4IScd0q6Xf\nTrJHVWMHpGyoGnJ17Mbv8eY0S9dYDPbLeA8X564UxOaXPog+cFk7qmj86Xxf\nCPMJ\r\n=sUV6\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQCLlV0VeUJkR+pviQBXnu7AlNn39zwkbzjDdtl8rOSMuwIhAONUR7sTeWqhT87PlaTvcIPMasSxfbtkGVjL1DsH33Sv"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.0.0_1611186955790_0.7399785473831495"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"1.0.3": {
|
||
|
"name": "loupe",
|
||
|
"version": "1.0.3",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.9.0",
|
||
|
"@babel/preset-env": "^7.9.0",
|
||
|
"@commitlint/cli": "^8.3.5",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.6.5",
|
||
|
"commitlint-config-angular": "^8.3.4",
|
||
|
"core-js": "^3.6.4",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.1.2",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.2.3",
|
||
|
"karma": "^4.4.1",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.1",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^1.3.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^1.3.0",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^2.0.2",
|
||
|
"mocha": "^7.1.1",
|
||
|
"nyc": "^15.0.0",
|
||
|
"prettier": "^2.0.2",
|
||
|
"rollup": "^2.1.0",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"@rollup/plugin-commonjs": "^11.0.2",
|
||
|
"rollup-plugin-istanbul": "^2.0.1",
|
||
|
"@rollup/plugin-node-resolve": "^7.1.1",
|
||
|
"semantic-release": "^17.0.4",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "d78096ad2fb46a9c4e9f10992f6142246dc96541",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@1.0.3",
|
||
|
"_nodeVersion": "12.20.0",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-AU6CTW3ZQJENjsAblp9Pu5WLuaUY+f5Jy+zrwKCbvuZGRJZBY6Mo9anqxv1vMR9Lqs1MHz8fwwRbdFeOkgAaXQ==",
|
||
|
"shasum": "3b009138abbf57c0c8ad9d00a72b8835c90d93f2",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-1.0.3.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68832,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCb59CRA9TVsSAnZWagAAaC8P/RBrBtqXHRn7Xu+jTOpy\nzi7BC7Gfk1Z/Oj5fW36ii41Kbi1XBsXDeKkTAFabtkBZkYwuXCtW+LxEWqGF\n4ZFniEBRSY1Jlg0EiLMxnu1XNzdMSYllqOZCGmgg6tlEp49TfrNHjaEbHeke\nHtKuXIuWAsSCFae6prm1obQ8S52aoDlD8OO6hF/2CWL8TrHxjc6OyTOlql2Z\nrCS0rpT52QQ2fSUmN4fIxBl2qgZttyt1oVOds/yC/P+ZA8KbGU/eHhsdaA8O\npccbG1iZkPruP1znHf6wC5ylVq28mp13te9EHwsn6sjN1T6vyAx/tbHNkNyB\nG1IfJEhItL/pBWS1iXzg/TM1VDqqNdC235tDja44O8OfVatOmRaryWJ2RC0z\nJYZqSEKRiQiPBTYSaZ20vJEAqJu0BwKPqVhjrz6Sg+33gD5u7S6qvIsNq3S3\n+c7jIO/jaPN/LNMZo8qcSOANTvLCJAR9XwiSej8Wo31cjAYUq3/KjAJRkPKA\nSRbt8aLEMyx+2oVruEGpTgYtcWX9sxc7rkXwbNLlZ0PfaXZgKiogPF1cJzd0\nU6vjl/g+iBWMpawN2a4hGobrTyE+anBeS37FoVmrtRdAn/30quFkTpZ9oDpc\n45USD4OBPZK5SPUlLusS8G/F8RiFXwjvDvGkVcqMiGkyA03NEMv8swUJnuMN\nmEVJ\r\n=5Chm\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEQCIFeb3brBlVICiN3LfrFZ99BiDs7XOq86Dd61wz6M7baGAiBl2p0HXZDiW9Djx5at9CpynmCfqFM+TOj5IbpkjN71zQ=="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_1.0.3_1611251325404_0.6602571333507568"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"1.0.4": {
|
||
|
"name": "loupe",
|
||
|
"version": "1.0.4",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "32b72766a6da738aa11438495d3b461f98942eda",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@1.0.4",
|
||
|
"_nodeVersion": "12.20.0",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-2gKbsRjAFUsAg3nj9UZR1LBwusxmJKU+LDhzpft50YlUMk34/qv9LEZSN2vpIW5MluGmwoMV66doXVZI6KPKZw==",
|
||
|
"shasum": "17d3f501537889f5d5156b862e93704316d4d6d9",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-1.0.4.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68673,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCvX9CRA9TVsSAnZWagAAAJoQAJkiO8tdmhD8ZcOMUZ0g\n06W4noImKA/A0CxJpS0F+9Zr0M81GEPI3MMAYtk7qg3eLRBRVt7WafgfTnpo\nJ48lA2J6MhnOvIGWK0CTLwDx4asIUMXxxE/4dunOdzR5xDqknKlV10Xji1VK\nKUGUajRrVTz5IlotDbQYX90YU6J/0qJ1T/lIpaQVVGfSkhZlHxvQB8o7dMD5\nFZSrD9DxgEeQZVWdfQKI2AJJlPIqtMnOeB4zcYYVnxlftakiVTLMukIxpv1y\netriXwj8B+/UC7WdUfIrnQEUiG5ZIhBsJksirRcwMv3MuOQWvGD6Tezf+v1M\n/5vLHgsywZ6aYu986w2yFlQBjmHTrApeve5C9+HoRJ9Gpo/IgIWzSZ7m4mQV\nuEilc7XTVkA/fiQIUp7M8F9e8sE40tpzvmiBuzyN1X2YJbZ6sKkQXkD4Gv4v\nsTrMpfIqw241cST1fHrHZayGnm+44GmD7slAqnioXxoGbQ+DJU81NwZnBCCc\ngozckc/e2dfk0HC1VFhlfqZpwPcyCKNJQhv13a+Zf1SkHQJoHYY0/OE1EVGb\nVC9wsgrkVGiZlmX4b1Wyg2xEY0UsZyJE6iTTV04NOyz5Yf5jTEB3Gs7G3efS\nwtCdLRw3PX6atfS68i3MPL1cvqSX5iqVEyoDtR/gDTGPh3LC81XLluE/ZEF5\ncUf9\r\n=NQNM\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEQCIEB7nzDI8YSvqf7sjb3gphO83N5VzaFCpWMQcyuYb1dyAiBESp2bvNEADef/ihq+BXcwWeH9VE5clCzdumiLa41L4A=="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_1.0.4_1611331068695_0.9445793215602492"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"1.0.5": {
|
||
|
"name": "loupe",
|
||
|
"version": "1.0.5",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.9.0",
|
||
|
"@babel/preset-env": "^7.9.0",
|
||
|
"@commitlint/cli": "^8.3.5",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.6.5",
|
||
|
"commitlint-config-angular": "^8.3.4",
|
||
|
"core-js": "^3.6.4",
|
||
|
"cross-env": "^7.0.2",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.1.2",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.2.3",
|
||
|
"karma": "^4.4.1",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.1",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^1.3.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^1.3.0",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^2.0.2",
|
||
|
"mocha": "^7.1.1",
|
||
|
"nyc": "^15.0.0",
|
||
|
"prettier": "^2.0.2",
|
||
|
"rollup": "^2.1.0",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"@rollup/plugin-commonjs": "^11.0.2",
|
||
|
"rollup-plugin-istanbul": "^2.0.1",
|
||
|
"@rollup/plugin-node-resolve": "^7.1.1",
|
||
|
"semantic-release": "^17.0.4",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "20087b8deadb62b1fd7d3d6c21819380158861d7",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@1.0.5",
|
||
|
"_nodeVersion": "14.9.0",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-x1DKw8NBoUM859Ul5rBvybT5SIheB3t8ClJohCxsiQZTCNbNKgJZGO5zfB6MHqe4cY/ZiuhFUfOrhCjHSrSTwA==",
|
||
|
"shasum": "2811cc9b083b8228c37489a2ee7d8ea7c7807c62",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-1.0.5.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68762,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgETAMCRA9TVsSAnZWagAA2qMP/jMfizVnM0L+TazN4grk\nLX23HalhE4Zta81KP/nMfdE1ZTY14LPuEtR/XnUdpcEXkorcke4LolYdpBNx\n5706h4TKOuYn7McgJ/ZlFd2AUzOewdnGyXHEU2eDZUtP1OXV+/5rLzlYweTh\nnSQdvj7Eif3wCQb2+n1Icmfp9GeXKpR9TaKsBWT+iFyJ8osYO5VP/FyJHJ15\nUkiMX6tyVySVGcG6ks1rAoSXCgGycWemRPpjJThM4JUoiEkX1a6NkUEwr8oQ\n3xgoAnNgBWrgzJGuAwLLOYcEW+2bI/4TPrDg5D3TwJVqgIgmr8V/Wv193mxw\n2S3qcspnQoLV6FaDYKyRYeXmlH+2J7FkPdtPBmQhgIZDusT7Oc3qizLamG2o\nDNTarXXQzdyY2GqdHtrERW9kyXsU81NkdKFYwrlRM/805f9PRJmOIWFM40GY\nQdekYC1/aPhMiBwKFxdbMcEXbnRAH8HRtvRZp922XPFweMGIAhBOZvB3cEaU\nMpjIW+IIbuOZKNYWb/dgIWgp2a0AWQ1ASFwi57sZvyEDqFuuqq0lOHj3udzw\njPVAD1pU1zNy3/sThsPIrse3tH8lelYinRmRhClEhcIUGU7vKBfUtEIfYIME\nfwRjXnRctKqDJrTs59DqO5BeB0KSQF1xI98OOQyIJhugzAxRGUBmK+kl95/4\n6gat\r\n=Aqn3\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQDiY7WoX728C+QwmVqAuGCroScgrDsqAh3mKdG+bCljqAIhAIegym0ivOdB8pwwqmEzVIr07QpBOBVIlSv9eZ0PesWH"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_1.0.5_1611739147419_0.6865725551401052"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.0.1": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.0.1",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "32b72766a6da738aa11438495d3b461f98942eda",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.0.1",
|
||
|
"_nodeVersion": "14.9.0",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-HcmmOAsQncNgeMqLG3gmdS/RnSC22wjz+EQWfxsNfFsBBZXotDBWV2V8Kt/O3t4wuXv+VuyCe1FM06oqruLaBQ==",
|
||
|
"shasum": "7fa5337a0159052f4559b8f219bb1bdbeae9e0fb",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.0.1.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68673,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgETHJCRA9TVsSAnZWagAA1swP/0dZWGZ5m5s23Q8MpoCy\n8OygMZ3oz64gQXlpKeuh5C2NHkeYn70Wt5lrPPoaAiu59iD/YpWHFwD9JZnn\nWN/j5KM0a/eD1eQGCnBPRAJquZEqWEjBHjstrMo0qmyxM+4ekVFaGoHRpdUO\nlrd0Riyd4x30/nyCXFqHjaU6ZLmZ/2zzJB/01Du4WslUxyLf812F/rRhKliY\nLdz/S+LPRkwAP7a4cvrsirs5r8dOVDvM3qfhQChBQ3lcFiJ7QLIOVdU00AwJ\nT+syU5GPDzT/ChR69wT0JDsR7xPakrMKGNWGP3PAvdcuRNIkZld0Z/6Eq7q3\nhyxLAyNoNDCPZuWjoVUJTdzcnIRaqaLAT3ltj0qk52czF+p43MOcKhCm8SKi\nsdZ03GGZ+6wR8DAyKJSGB59h3Fa+t0BZOnjXkjB2PRTd0xjrd408ZGMyfC4Y\nw4hTsew/AIHB1uZsYtxC8w2jWbdO+UmuqxaZxnuKDfrHH3sFsl/NOoDk0q0J\nuoqan34Wdx9boNFFZw8qaqyrCqoKfzg8z3b/5xQSJnKh5IW/gfCv8xBA9PEa\nppbxCMWLeged6wV/A+rVZe1TYFjzLlM/FRJgV62i1CTtOeoqbfCkyjAhJrzt\nevi5tscT4a5qT1hBd5fKG4TTPWqvEHvbs530ooOqzCMf+VF4TyIOnzsPdwru\n6t6s\r\n=6RNG\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEQCIFe5Sp07b3l8C6oniRCoU2cqxpr+kGdRkPMESbyhyTb8AiAbUw4XM9KUhl/Il5hG6EBqCfcwolqtJFbzhBkDuKA0Zg=="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.0.1_1611739593071_0.9997111356204664"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.0.2": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.0.2",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "8d6cc8347102a3b6af0b50c97ef44febfffd187f",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.0.2",
|
||
|
"_nodeVersion": "12.20.1",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-yorUFgaw0c5VcSL1gvzhqz4Fg2NZRvToD9rmPRwE3c1eWZHVMhORQAczxuWOlzShzPjB5VnV5dqIUc+DY5Bb7g==",
|
||
|
"shasum": "8ea977cc7d3c6990de0f83915e00462d5b596dfe",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.0.2.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68667,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGTnOCRA9TVsSAnZWagAAC1kP/joQeVRiPA6MJ67qcKVX\n7MaCZlM2VoNDw89ZAnIOjRDDRovTa7s/MoZyyoCvO1r+VqyyZKeYPdrq257+\nc/1oUWLnfz13FxQT34CqY8UMJV0CVngHt5O8khIiky9ufu2CECZGaFE4Paop\nhuQubGyngQn8033zF4llJ57JrVj6NhXt0j7UN+bH4L/tjfWXpGBvLJCdGvFv\nB4YKWdcJ+YuXoxCC0DJtxPjYNiB06Zqf30h4tWlRZjToLJWY+1Q5WIjvYe3F\nnREsHOr71XBnBYhhCw7bNg91jsHgdnp+xnV5a1PjYW2pDwKJHiAGpsYr+hFP\nDo1chXdQVgcAxiTSqNXC6Wf/Pwc///PvFvrXdYJMD4JAvRUXBxWtPYeJlVRb\n4sfC9NumVxIMwt7/zSWMkpxqzJ/M7hixMHQVK4YRwiLowtoaaowz0ec22Bit\na0jQdaSspx0Q/LLoA9224GgYzolMGUTJKJbxHJFJjlXNCWC6QsB+5IfJU5bM\n8Qj9qwbVu6K0hKKwcrRLy/ussGd3rGluRAEDIySKvxj0OwRP1BVMB6E/xtVP\nmJXe01KpuLyD8V6S+k4NO+zriDUpbbiggg1fIrCdL5ywOB1jd/vPcZgHT+Jw\n8TuTIpfxNMXg10CwaBDkAECHBgtoKJyCgCVL5zWq27S8ZEbtovHQ7iCdU1O0\n7xKS\r\n=Wvme\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQCf+gYMmmIgidnzTVxB34XNZdQbCDDOeNPTD+xRE+VlZgIhAOj6oEp9TTVVgorL8RHkAbKmyEc19GEljA2kGCys2uhX"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.0.2_1612265934052_0.40020565768809746"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.0.3": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.0.3",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "c66dc49438116a49c712bb5d6aeb252214b625bd",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.0.3",
|
||
|
"_nodeVersion": "12.20.1",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-EO23oee3x9JYZVQM41VrrNhWYC3gpn3gvXhNvDzX4MUK2v2lrJUNpbt3G25SASqW50nlltu7NLc/ERJTtoCWDw==",
|
||
|
"shasum": "3d93edf6e87de64591b5be340d94bd34a55e3486",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.0.3.tgz",
|
||
|
"fileCount": 23,
|
||
|
"unpackedSize": 68703,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHDxICRA9TVsSAnZWagAAahcQAJ0OBEqIbuPCtPS1R5ik\nPMbyYiw2l7CTgHqSzK11VAAaB5idMRa1bWchzMPXqMhTXWn2bmdtXLg44yZX\nEeBYHf+PVciJXUH1ljBcPcdkhf/ctQoiD/YgRvMozHRayNaMvuPRPaVNjLDO\nqHuyh5P9uhWee4Ausgip37H5v56hApx6SzLbcg/xU5xTyMq+ASnCzOnjNiO1\nJOEiparU2aJ+EevtYfb/B5ha5M3UhyKfgtLy60cPnKI7uJneKZjPw4z5RDlf\nPZ++hGug88mlL2OAyyqPou+UoRQxooU8Y6sUNST+dXjLcdfRz+Az1AK4mTMP\nELlBc6eF2b0EzVCH66+6L75b5dr+2vTwkc1yHGChLcyLCzTx+QWk2Y2pvuSP\nPgQU2Z6BfsV7WaLKgUwVGM9OOnL3eedZUx8nrlv9tQLNlI4W62xDbSRAi+iX\nHiJ+mwaCD1A3FaNLpE47pvjp+RkJBbHPtWPZIAlMoVuYykU3LfVp6BhuLVll\ns8zxkoWU4N9NnFRf99Xi3mqEFj+ySLh9CX4O2XQiqYb8xRphINO77f+k8x6c\n1zoSqbbblP3sPQxSl13dR9w5lqXxJXTiTDuiIosnsL49AS2aNDBD3PjEtW9w\nOyFAqinRnfH1l8LvAvUhOyO9F7UEb7vPacZC53yKdUa8Smfi2RSTDgU/81r6\nDwm6\r\n=LpMc\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQDlOrzyVcZ+a7RZ3ONLBjR4qNhrCjGX3Ut2FRNqUCawKQIhAO+Q3vpvpY6s/9L2Ga4wpWhuy9SW/Jzbcg6kl12JMV2j"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.0.3_1612463175126_0.6440517365927483"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.1.0": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.1.0",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-function-name": "0.0.1", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "fcfc58d95677a2829bb4cadb1840ba49843cde0a",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.1.0",
|
||
|
"_nodeVersion": "12.20.2",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-CZvDn5xhu7mBYaADNJDW6P2j0bxKwETa2Eh/JxHov2XSY6RkY4QSkPxovt15SKGznPv+2VVrrHlq/5ECLCi2hA==",
|
||
|
"shasum": "7baf9295bef28cb5d00aff0f81774f8918e330a5",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.1.0.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 69420,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPQQ+CRA9TVsSAnZWagAA/h0QAJ4L0AlvpNPW48hAnPtT\n3Y8XYDJ6Cf0F9Q9QKo4JZZUw1WKPJ+8GfewwvrYt6PHt902ghGlhYgHHxelC\ntamnigX6YVffIY1xrLKtU88fUtWIDM0ZEC72O8OGUR0ct5ba+0pAbNPKVfPz\nIcW4sOkmxQtT1dJXqNvLAGhMhR1YrdCrmbk/hzzWYjExNdrAzNaSRGcDocnI\nu9bu5LaJ9UADqsupQGofwN7jOaMXigcQ4OYCvSIW0CQtY6AjHKQ517mNefJg\nmG9lRVQNgO6iCD/PuQLH5Nx1K9MvC2NikHfcGbpJQT8h/ZuE1Ljbeiiq2hYT\nVldFlMyCXU5OycvY0pa3ADdXNxqHlohs0M4EwXY3dL5KR5XBabsLPFLQaB3V\nBCagTOuhRSBEtdcdttwamVCx+Ar3BU0sb4h2qgnz+G0nJByn7lpZQz0ciiVy\nV9sN1LSZdFy8ICM6dT4ryUKFvCKkyNz01hPdm7WlG4b10cKqQsQHr9xejE2l\nyqXsFs5b+QDdzcf0KL46P/Q0tDRGzrFG+GahNoAX415Y6QgKskhEsPaGn1kT\nUBBgcCtCbuCoO2l0R3vKcBLU5fZ2GA2Bcki8sRYYX18s7IJp7xvXCZZaN5NK\nlNAJeqmm65Tnm5eLjj5xcxC41+BxBSdcoqO/pInDBmluVipjQQnakGHgqAxC\n/iR5\r\n=eKoi\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEUCIQDbGi2JcX0KSKBL7lylPMe/MxeYlimp9QxH6iHptTNUIQIgK5pbevfXQ2PMiNe11M1vS4NvwoR7DrxO3qKdor5kZek="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.1.0_1614611517622_0.0858290262939676"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.1.1": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.1.1",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "5db74c7bba74ce393a1a1a1bb46e8270187ba0d5",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.1.1",
|
||
|
"_nodeVersion": "12.20.2",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-C6Hqvejc5VLgz6L4gf1Dl1bBLZ1OTkNG70K4jtQkV/+y2JJlJKHGxe8roH0+hsO2wgZGo1p28IlMyFFtF1UUQQ==",
|
||
|
"shasum": "9550cbd24728ee811421d8fbab0ea6064cf33ab0",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.1.1.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 69101,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPTH2CRA9TVsSAnZWagAAVtgP/0jSUd8GchaoEWGXsIow\nPGHSlILt8EliwLQkYyOV5j2lJ9q00k2sUSYBvowKbEWK4SHO+/DljKrV+QnG\nCFF+NdGtWpU80WiIZziHLi5thqXGyuk2fcrLh9ZC5GaELPmR9AjT1+MJpFHH\nN6OR2qoPmWqqhHyTxqY5Dz20adLEmMnvVtHzPbKQ1RWOnPXKDrhz7zJuh3xy\nhvKaLd1i/3TSj/WKnuSlksW3wdQ36thdVYXM8sYcn+YPFFY/tnbE1r4gEMb2\neSLLuzYoQ2oUgI8OCoiLwxgARBuXGUaFqOeneaEx5315utiGO1ml/KjO8u+r\nYGpFsTeHMN/s4Ludsa1Lw5GcLrAaxCHkLTG4Dze1l8GwP0xe5rtBwV/H7URq\nKJa0EOkc0u/Rm95v59X5EOBXB2RD6xxP/wYKpJbcbvS7bkb7TuIGTQu6ZSZt\nFAl/XujmnNPETHD7fIzn5JJs21WAe2DaJFCWIg9kXbgl6dmfROj+Py4F6QAg\n5kKPMMiDJBBpXwidOSGjXoGrFr4hI5UBwrXJfCghxjQDxpXEkWGArXhM9/02\nYL1gO6GtiXZpaxnyIlflM0ojH/3kPJvimTphWMsyILmwJhN3U2ZhC+YjZAoN\n/YHncxlDtBIMpWFdKPhXsXfj4V/MdY91a597Oa7hSGNuCVYUaChX0gwixcM1\nvFsW\r\n=8QFv\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEMCHw2qkfyMdmMOxVlMuixGD9p8aru0dcBE4i47nAkEBLUCIFrZAiw4Z9ygPJPylRwnU8bafPHVPUeMnni6WVDwfvWf"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.1.1_1614623222201_0.4943159000699524"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.1.2": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.1.2",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "5e7683061f5bb4b98b4523bb3683a96582deb051",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.1.2",
|
||
|
"_nodeVersion": "12.22.1",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-H2KMZkLZwpGbMD7xYzm1p+Jib1mNoK7modoZ6X6FcSpaUh1Dc/be0J9uDI/6+gHn4BjHS46XDW54qHy89ttvvQ==",
|
||
|
"shasum": "dac5f1596f521a80f099464e1cbeb61cb7e6cbe4",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.1.2.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 69238,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1PIrCRA9TVsSAnZWagAAJAQP/RM2ltlKj6mHLqU8XFjo\nc5hvUfxxK3JKbUunqbeSmDtBaWVCvOLds2cxKMXJXAfGch4tSUD5aZ4x+q6s\ngCKZ//yC/zCHQvDBtlIdtPtsiKMUKT+v8Ci4Au3dHXUAh1QPGJ2UG7+CG7KE\ncbkhoz2JnBw8LKeOEcSP7vad/TOkGIlIkFFinTQRnva6rLUjsh+h6Qjxqa4e\nq70SIdDSipp+aOriY7WjUHHvTSKj5Jr9UGmLAv0lYk5grRZZDcD8/KBs6ZOI\ntuINxHl0C0n18ejrqB4bqn4t+HQlzPvonZYwoc0QkOpJxOwwoQnntI4vIplO\njokNwSg7UHZdR1msbFSQDwmzhufLRJUUujw8dsbhwWKFf8tEpkogyF327/74\nsPk3vWHt2IWVCT9hpsLtg5ndFqnzf2b/TN2FWNQsbVyJJmoqyyRRHGIroeCM\nl1K9DkzFIylVbpAbgBglC9yVfU3YZcbcrjlg1Ml1Ik5FSyhYdra3wGl19I7P\nKIg2RFgBlBGYO//E3VtHngvnc28kogQWwIRzYtrsYlxSIYvWpdMf4tr8ADsV\n6BLftvzBGJv9cAD+pUcMWlVh0K7V13Pl7D3Hkb7IxyxKXdU0yHmqqzX43DlY\ncIhg2pDuZVzVBmyXZ6sBIiWdRjoY76duzKU/msNo6vjLH6O8ffbRA5YAp6dl\nbsL4\r\n=fOyx\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQDLv3DZugmd6jFTR8/uH/6c44ISrUbXJRRO7Ia1enkcVgIhAOpsUnZeK5rf67HAn3CLXmfhFiuDrlOZqupznukPSKoB"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.1.2_1624568362969_0.2623603514368882"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.2.0": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.2.0",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "1664d708cf270a107c9961e4f02c71964c93cfb6",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.2.0",
|
||
|
"_nodeVersion": "12.22.1",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-hOtIqQUmfehWUM/tO7dMGPCL6NPFh5YpH4NC/5WjUJ32BH7RrAsNaglk11++X09naSoKOe+v8d+mPYYsl6rmLQ==",
|
||
|
"shasum": "87e71a9c3eb933dec9b571a6388fa0b5c154a99c",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.2.0.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 69562,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1PL/CRA9TVsSAnZWagAAGjkP/jPRzkGxQiCnQnopXfHN\nbBiC8RxJLLL6m4y8MMBEDhHumoX/1eSPmK/A3B+2bKP1l6eMpi9ueSaU5/Dn\nLDcCGgMFU7xmM8z6I6tzkhDy/cdh/h9hto/oADL5uZVEHX18B31ESARO7YAs\nVPaZKXpxx2u9rkdrdgc4z+O3ffXs2qHYM9GCrKDNBldLW2dTXT3sACLGvnCF\n1sZWZ3agZTWGxULxArpAfoPAdqful21tcj7uVWPgJRgeX+E8blbb/xweYv8t\nAZwaAm+Wi2pjVS0Qs1IImebKsMQz0SUTGW6FHs0Ml7Dgsqci0ZOK/VqevDlu\nqbj0qC6jWENcKNFjZ66uwMQC+d7oaytUH45yiTMuybOeGDj2b1Cmk/bRqu0g\nC2m+HSYWLQfatrVEeHxqP73xXJUMkHuuUj/hE1OLSoyOyotRsym14DJmv52N\ndkxU9pK4yy1919mmu/hIzmxp48Kry1Zdi5tu4+zQwX6GFMGEzgvFG/+mx+K8\nyIBCUQBRZT/CFEci8A/6l0FazaafbhRxJ6XwebYDpVIu1Fojovshr8yPLvwb\n/3rZuFH8nI8Ft6Ji3OKLY0yzRufJesM4I8KogWiWsz+4mblOK2CU88E3EtZT\n0s/VBcpqn4fEDHW12GXYqm7SRl9+aYvk+858pvw+J2CLsMmkj+p3HirxsUsD\nw4sz\r\n=nJ/z\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEUCIQCIyhVWMWToaaMF8oDOg+XnDG8D1nw8FemmNyGPV90f8QIgI2Ceecaxbe2edirKsQTltfW+E72qVnRjLltg6eipXNA="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.2.0_1624568574777_0.8798613061047276"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.2.1": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.2.1",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "917757d14ceb0b4492e32c346c8503c375497c08",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.2.1",
|
||
|
"_nodeVersion": "12.22.1",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-dxMLhqu8M3JfAOyE8CxUdIewbzzJEvk2mqQ6vurMJNrb5uWqv65Myzv8znqQnKJml4TcP+fyQIlCBbcP5Bt+xA==",
|
||
|
"shasum": "68bb8d321ac0275632ceaccdbcc5379b779ab6c6",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.2.1.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 70072,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1PW7CRA9TVsSAnZWagAArBcP/RsvZ5jcxZUCcsAQP9aE\n9CsntNu6WFNZHwUJQQ0KtHShrVxe1Ypg7TWB9AI4NN/2yCvII2bb1CwW3wWl\n0ZWmJVgjdJSjPX4EUFQcPp8mzwJYqQMX+Z2wX4WcRif39wjeobBY6bBdkTmg\ny25TmQq8w/vA7j1iVaTWsQmnFQP4ruSVtPHdy5B1RazY4BRXik0sXKOSLhRh\n4jZZhFPNuAAVdwJdeXuwRbAmrEhDqaaf4q5zzvcgWlDl9LCp3SmJ9lZrRFqV\nL5gEWlGmfOZzWNrJbkOTR+ukwCyXw+II+V4XzWMrntl2wC0WwIqAOxIgch95\n2z/5ctMStJdkz/N0urcFqgson4Mgo3Jsa1/zTykSt5wsejKpiSidljtWWpyi\nCjqszOA4E0ArHoJ7+pcrd4qeLm4uZaWueVZI85Th/iHnerE2K0YJVUyZNnhG\nW4oJv80fCJhyiyt3gfSKpoNB+pd4oBfyfHX1XnlW3apdDfjKJ3K52i0eb9op\ndXv3buJ3IR3+hfUruZC+DxXSg/WtSJSWgnTNwShDYKw/lkGuy6aH19ZMrGxS\nudTLo+iTxFUwiCpIr9Al2DMxpLEqilF12EU2Oab1DUb9lBTFGyhOyKEVDFOV\nb9en96klwyGaKtmCMiBRNjogJaexzDZ70X/NZJ9yLUoqn+eOLV5JlHdRqCXG\nj5nQ\r\n=Pck0\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEUCIEw98BglJ+oVfH3F4Nwf94DabunaU+kzZDE8ekjqrCzmAiEApH1NZ6MfLsIajGhC6eCga0OqYvcunw/B4SKr2mFfDjw="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.2.1_1624569275212_0.28957278166232747"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.3.0": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.3.0",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0", "type-detect": "^4.0.8" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "b985e4f00ddd263b77b559fe1ec1de5fcee1d436",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.3.0",
|
||
|
"_nodeVersion": "12.22.1",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-b6TVXtF01VErh8IxN/MfdiWLQmttrenN98PPGS01kym8kGycJ9tqBXD6D+4sNEDhgE83+H0Mk1cVSl0mD1nNSg==",
|
||
|
"shasum": "cfae54d12853592e0ec455af490fd6867e26875e",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.3.0.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 70355,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1YtACRA9TVsSAnZWagAAOFYP/2YYSaojjLrg7MXFyHGE\nlxR3AUARaX9VZPkeKNj9i06As/jg/GHGppVas9d7WpK6J7iyd9a509Hli/U7\npi3B/2LGHYFu8MEARaY/Pt65tgIxULEbOLvsETMVQYiDMnaWI6E34ZU9n+cJ\nW/C2PE5nQnfJf6jdirAfNqYW8RWB5HoCTpknRP3ibypFt+rqKfEEWG2miLcR\ncYS42KPnZOI2JTBc1IkxPmk6ZbeZB6BGscU3GpR/XNVxnfPwLGPz5XygTiV1\n4Ce4bthZwuK9OJEpfFfPCz6N266YcRTmXMzhqQSNHROOAU9pqXM7nn/yIW5I\nEq2C9l+hI68FDpW5INtnnhtOp+gvSJNkysdZr0RRoOvWj9gqP7nJC6yfhuGS\ngXsqd79xG7DzqKjKIlO1K1sletl8cIsdOTCa8HAlX8zt/ToGBru1v5NZ6O/P\nCnsMup4nTm7IgF7GwURWfnFcCE3Ec8O2UIzbFMvwMKKAY1eDNKWpGXNAi5Z3\nt4o9yCGMGL3g8BoqZGYi9jthZmswCrhfvD8DwhYsiWrBjJeooG4hsu9RRO4W\ndEeqjr3bmqwVZn6k5iAH7ec/W9G89sS+dXN48gEwngXhPOnAoJ1GLPj71P/H\nnIbjqQ3EydSp52oSkejW3Es3mJMHc3HJwC7P4KZUNAuZrghkVjDH7YeTAcz6\nAIIm\r\n=K09M\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEUCIETRWZSFQSnSAmibPqogJdwMDdqQTosQxmjeHJIZv3fmAiEAjdriW1FJQdak8tMOUzGOwHzJ2HjUCdmRRD6o0Op6eGA="
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.3.0_1624607552274_0.7503677973456884"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.3.1": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.3.1",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"browser": { "util": false },
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "30e1ac751327dcc5b85c25c2fade1e9932b04ca6",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.3.1",
|
||
|
"_nodeVersion": "12.22.9",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-EN1D3jyVmaX4tnajVlfbREU4axL647hLec1h/PXAb8CPDMJiYitcWF2UeLVNttRqaIqQs4x+mRvXf+d+TlDrCA==",
|
||
|
"shasum": "a2e1192c9f452e4e85089766da10ac8288383947",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.3.1.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 55778,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8UKrCRA9TVsSAnZWagAA9HkP/3a39jJJcGT3j+FO3Dng\nKFFrv1la81bvHeZ9sIftJit2DSQOINl2eeF/Z6swVCxjNs8wSsuu+UYopZ55\nxKE/4ab9SZUHcbKvZ6KPDLCgSlAIN8U/rCfVxpGJ0QGz7glCeLVGZiZr3mqn\nFwEvOJ1hRLvaDbwtQPgasIbeITCYdN/f/tnWmxEChwld856VRR/tx1tl7i/s\nLNFOaRhl/i3OSPV/Xot23Ni4w84qTfI8pPLaiIOBgD/6GHqTP2zw/1sr4ugZ\nmQDIYdTm00N3hnECAZ3Hp0UssLIogZF3yFVWX6JJreL2XhxsY5w9L/HXzN8q\nmdYsutzejw+R2baAQ1rjIrVwWQv0+6u/dLBS/ZcEeNFI3RVWqrTXGjeduvrP\nKcHde5Vkh/xIil9LDKHVwMFc3GfhIc+dphSeiLji54PlBAFHZd1sU9P2x0J4\n/4InOFXY71SbnEUFJg5xtHK9THu/z9xke1RMgDlV7qfs1dPwSI+PUWMgHZIR\nzbgubOOK/bd32HZPmnGpjSOFqDfWT68DucoXGmIqnj9ORgleY1EoWRyOMrko\nPc1lzd30fzacCcz6Se9GVEa3vmEXlh4M1UOn9Lxeelw046aaeowKMIzTVv8V\nKGEHDb+AfzkI4RLNI1PYJGQoLrg+nb2RnRSBfMVvurXi8DMnX5pikr6vMjRi\n3rPH\r\n=Vx+o\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQDxC9ONCXNOJdrJQo4t1Zdsc8VMVhpxLvnS0kVk+tE27gIhAIZTGQPjcs4J4NIYM3Ns5ySOdWqRGz0Lc9YLBQh4ktDz"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.3.1_1643201194901_0.5683960917899227"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.3.2": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.3.2",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"browser": "./loupe.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": "2020" },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "c83d7d0d4cc4d0b316a1df480e3a6668d767eff7",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.3.2",
|
||
|
"_nodeVersion": "12.22.9",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-QgVamnvj0jX1LMPlCAq0MK6hATORFtGqHoUKXTkwNe13BqlN6aePQCKnnTcFvdDYEEITcJ+gBl4mTW7YJtJbyQ==",
|
||
|
"shasum": "799a566ba5aa8d11b93ddccc92c569bbae7e9490",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.3.2.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 55767,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+rviCRA9TVsSAnZWagAAH18P/1aGHbMDNhOGrSZ4PNNy\ny0V7wrkVW5v3Dptvtj+TDICTAWzgJvxBqKSUYRXA7sbu7OsD60FK3Fd3jBFM\n/TtcHD/1B6EWMAKKbuJrC/I7b+VXXNniRkriErAmpPYVA2nfNE9pK5HQe2YC\ndQyJvFVA7ciWz8GzdQz9LccCkDsyCHA5NLWKIw2SBxiDtEHkbisaSq5jqC0f\nX4uE8zLH74xV2+TylSqzUbtOF+hQtBALcyl1ivoLGiESwaoLFnL3RnK1nNZj\n81Ja+tCxVTTZBdPwK1YQrE3HmGVrbWfMDyRm120hpJyis52N4gVcHDcLfUIh\nizU6clXefgqjtHr7VX0c8RQhS78/ymeg1ci8I9s43FnNRSQApinrkuwI79xR\nlUt5cchbO6kmtB0czP0AOQcFZE4AhuCEXKFWSxyvRapsU7RjFqQbN6X3ZWfF\nexQ8IjzeXAQbvjiVKOXUECxxQ6EANgwHmxzF8jvaoyqlopGwwpgPuVR9yIuL\nk186dF988WInoCgmu3CkiqcC+meJrLcHCo6mxIEHPtZoBWGKLleAHxaDX4fA\nLM7M3gGb9a1OC9d0Zim+EKF7H2M40l1rGdnO2zqQ09JmcZZqbYEdhBD4K6/V\n045+6RPDttRo6AQImdTKIGGAaGiO3ozfU4rwwPq7HzoSNvOFOrm0UNEpQjYt\n/mVW\r\n=zHlG\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQDXaaDuqRxyF4V5OII78olx5QUw11MKesDYQvEkYJ5TfQIhAIz65Nm057ppkU9bibtIP1H5nBA3c99veakukHaFBmCX"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.3.2_1643822050049_0.11947835885602842"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.3.3": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.3.3",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"browser": { "./index.js": "./loupe.js", "util": false },
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": 2020 },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "23c7201ee5ff50463122bf9258c0fb159dbbbc3d",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.3.3",
|
||
|
"_nodeVersion": "12.22.9",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-krIV4Cf1BIGIx2t1e6tucThhrBemUnIUjMtD2vN4mrMxnxpBvrcosBSpooqunBqP/hOEEV1w/Cr1YskGtqw5Jg==",
|
||
|
"shasum": "5a92027d54cfb6de4c327d3c3b705561d394d3c6",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.3.3.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 55808,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/lUWCRA9TVsSAnZWagAAR0gP/RmxofH0IGDme527pSlb\nVdK8e+tOQqcnZEguF4hjET7Gu0tk+eR/zqt3p4RRT6oRAFWJ9xyv8YZ76/XU\nCndpr3ObpYcp6bwmfwyH9433Xh5zAIQZyIO8OAJBh/qCo0Jg98cY0ivh61lw\nDeVfWVTdoyGRGnlgs4B4FEZGgFB205zbwo1dMYr2ovtB1RALpIXl5QErHqy5\nf+ACtOTCSpzaddLpx35z8YaB0wc/UFHIjch1i0ljUtj1t2Lb0W4c6MZpBSSS\nNqPqkTSf65wfX2q+2o779wd5Um84DU7Npt8NYQP7NSfuJ6w8L0Nq3Yr1Zzvz\njkYCYFfFShSfcox15w7Q7OTWs0DAg2ktPTdQhMOXlpAn6lSlT2Y0rNPPpzua\n2b1aMxPFULIJHa0Q9fqSaixB9zfici1QAW+NL8eg/Ad1RjQcE1C8ZoACjtpq\n28eVNESM/oksM2ecjYlC4Btu9aHxnUL7zn4+zNF7kF0lM2tLPU78MbqLZtIw\nKwseyOYEPAe0wqjiXG/ZzXeP3/iYbkq8+xCfycZOuPqe8Zo+Bdrdf1+U5BOT\nXN1USSOTpMK5Eclhm6KOwbUeieRNKilD97vtyN0afizojpB/kfTE5r6tG6wE\ntshVtgUKu1hTHf2vc+B05btfRs5Bnaff2Gms8VPpFTr2P2nt1xP9sEa9gDgf\nNnjG\r\n=lZ4T\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQCNaM2nNqD1KrkXELuvd0SKzmIYYlMOAIT1XuMyQ5dAaQIhAKaYGAJievznFbOYJcYLMFPVtl8W4wmzA9VgLchnLzwt"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.3.3_1644057878417_0.5395898656751641"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
},
|
||
|
"2.3.4": {
|
||
|
"name": "loupe",
|
||
|
"version": "2.3.4",
|
||
|
"description": "Inspect utility for Node.js and browsers",
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"license": "MIT",
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
],
|
||
|
"main": "./loupe.js",
|
||
|
"module": "./index.js",
|
||
|
"browser": { "./index.js": "./loupe.js", "util": false },
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"bench": "node -r esm bench",
|
||
|
"commit-msg": "commitlint -x angular",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"prepare": "rollup -c rollup.conf.js",
|
||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||
|
"test": "npm run test:node && npm run test:browser",
|
||
|
"pretest:browser": "npm run prepare",
|
||
|
"test:browser": "karma start --singleRun=true",
|
||
|
"posttest:browser": "npm run upload-coverage",
|
||
|
"test:node": "nyc mocha -r esm",
|
||
|
"posttest:node": "nyc report --report-dir \"coverage/node-$(node --version)\" --reporter=lcovonly && npm run upload-coverage",
|
||
|
"upload-coverage": "codecov"
|
||
|
},
|
||
|
"eslintConfig": {
|
||
|
"root": true,
|
||
|
"parserOptions": { "ecmaVersion": 2020 },
|
||
|
"env": { "es6": true },
|
||
|
"plugins": ["filenames", "prettier"],
|
||
|
"extends": ["strict/es6"],
|
||
|
"rules": {
|
||
|
"comma-dangle": "off",
|
||
|
"func-style": "off",
|
||
|
"no-magic-numbers": "off",
|
||
|
"class-methods-use-this": "off",
|
||
|
"array-bracket-spacing": "off",
|
||
|
"array-element-newline": "off",
|
||
|
"space-before-function-paren": "off",
|
||
|
"arrow-parens": "off",
|
||
|
"template-curly-spacing": "off",
|
||
|
"quotes": "off",
|
||
|
"generator-star-spacing": "off",
|
||
|
"prefer-destructuring": "off",
|
||
|
"no-mixed-operators": "off",
|
||
|
"id-blacklist": "off",
|
||
|
"curly": "off",
|
||
|
"semi": ["error", "never"],
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"trailingComma": "es5",
|
||
|
"arrowParens": "avoid",
|
||
|
"bracketSpacing": true
|
||
|
},
|
||
|
"dependencies": { "get-func-name": "^2.0.0" },
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.12.10",
|
||
|
"@babel/preset-env": "^7.12.11",
|
||
|
"@commitlint/cli": "^11.0.0",
|
||
|
"@rollup/plugin-commonjs": "^17.0.0",
|
||
|
"@rollup/plugin-node-resolve": "^11.1.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"chai": "^4.2.0",
|
||
|
"codecov": "^3.8.1",
|
||
|
"commitlint-config-angular": "^11.0.0",
|
||
|
"core-js": "^3.8.3",
|
||
|
"cross-env": "^7.0.3",
|
||
|
"eslint": "^7.18.0",
|
||
|
"eslint-config-strict": "^14.0.1",
|
||
|
"eslint-plugin-filenames": "^1.3.2",
|
||
|
"eslint-plugin-prettier": "^3.3.1",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.3.8",
|
||
|
"karma": "^5.2.3",
|
||
|
"karma-chrome-launcher": "^3.1.0",
|
||
|
"karma-coverage": "^2.0.3",
|
||
|
"karma-edge-launcher": "^0.4.2",
|
||
|
"karma-firefox-launcher": "^2.1.0",
|
||
|
"karma-ie-launcher": "^1.0.0",
|
||
|
"karma-mocha": "^2.0.1",
|
||
|
"karma-opera-launcher": "^1.0.0",
|
||
|
"karma-safari-launcher": "^1.0.0",
|
||
|
"karma-safaritechpreview-launcher": "^2.0.2",
|
||
|
"karma-sauce-launcher": "^4.3.4",
|
||
|
"mocha": "^8.2.1",
|
||
|
"nyc": "^15.1.0",
|
||
|
"prettier": "^2.2.1",
|
||
|
"rollup": "^2.37.1",
|
||
|
"rollup-plugin-babel": "^4.4.0",
|
||
|
"rollup-plugin-istanbul": "^3.0.0",
|
||
|
"semantic-release": "^17.3.6",
|
||
|
"simple-assert": "^1.0.0"
|
||
|
},
|
||
|
"gitHead": "b4ee644cedc7d394d979d043da568a999c8a59b1",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"_id": "loupe@2.3.4",
|
||
|
"_nodeVersion": "12.22.10",
|
||
|
"_npmVersion": "6.14.3",
|
||
|
"dist": {
|
||
|
"integrity": "sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==",
|
||
|
"shasum": "7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3",
|
||
|
"tarball": "http://localhost:4545/npm/registry/loupe/loupe-2.3.4.tgz",
|
||
|
"fileCount": 24,
|
||
|
"unpackedSize": 56060,
|
||
|
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBSvXCRA9TVsSAnZWagAA5GMQAJNuCRvAOABV3NaJwrSn\no46XwR3XBgbKgQUgNqjdZVytQrG7W0N2fFIJEsxrLh8FmV7NewVwZDmUW5ug\nzUDWqnJ8YubHw2+W4b0EJM39nU8iUwR5Gmt5dbbOCGu1QMfVhugBpxFfPr/Y\nkZZ3JToYqjZ523+gL2pollIHMMzJ87o9gRZtWRdiIk9anNHgmhZlB2tPflQ+\ndHSEwpOAHZEWZSNVRoBvFVPagpFqfLP6oiuO1qd8j9xkEu5OHui1A7fUFoiR\nZACUVy1hpSnAM9JjVoUa2saEHWlgprMiww4t7x2eR4x5bB2IYVbN1BAJGYhB\nmzMYJpVT6f0WcNHY82IvKgEZ8bpCxjrYHSLJLf3gP0PYGkkGy4MjtvNmLYIn\n0+ORkJpS94XwS0+RLRkc3mET9Fc7v5tTJVcf+7PGBoLoFJFMq70i3ufhT/+p\nrNlR3CKOImKCaVo4R58uw/zwikkDJEFq+DZtWsq8pJqMuvSTAQl6UEtdKXlw\nDPm+Nx0yXf641CvpUZJ7Ea8QxoOiNRZxzidXqI0rXWZYmTsS8+rvCIgNuSd3\nXhWJtZGG2yY8HSHMFUPY/GVV9Dh1fFL3ZwYLLa/3FhmOY32zlOOBqCQ1onQl\nRbjsDEsUJCgQ5c+vHCncEc+NADSrqNlicMw/SFqeAvbR9S+ZtX+83kw5sq5M\nyuWX\r\n=GAB5\r\n-----END PGP SIGNATURE-----\r\n",
|
||
|
"signatures": [
|
||
|
{
|
||
|
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
|
||
|
"sig": "MEYCIQCA3CaA1BAoAU59PGrhQpQxolxvBV2eSQKCoXmsGHPwpgIhAN2osnbK131i8NkfxAmYsFocDdtZxp62muOWECWapmSg"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"_npmUser": { "name": "chai", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
"directories": {},
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "s3://npm-registry-packages",
|
||
|
"tmp": "tmp/loupe_2.3.4_1644506071817_0.5329298460994689"
|
||
|
},
|
||
|
"_hasShrinkwrap": false
|
||
|
}
|
||
|
},
|
||
|
"readme": "![npm](https://img.shields.io/npm/v/loupe?logo=npm)\n![Build](https://github.com/chaijs/loupe/workflows/Build/badge.svg?branch=master)\n![Codecov branch](https://img.shields.io/codecov/c/github/chaijs/loupe/master?logo=codecov)\n\n# What is loupe?\n\nLoupe turns the object you give it into a string. It's similar to Node.js' `util.inspect()` function, but it works cross platform, in most modern browsers as well as Node.\n\n## Installation\n\n### Node.js\n\n`loupe` is available on [npm](http://npmjs.org). To install it, type:\n\n $ npm install loupe\n\n### Browsers\n\nYou can also use it within the browser; install via npm and use the `loupe.js` file found within the download. For example:\n\n```html\n<script src=\"./node_modules/loupe/loupe.js\"></script>\n```\n\n## Usage\n\n``` js\nconst { inspect } = require('loupe');\n```\n\n```js\ninspect({ foo: 'bar' }); // => \"{ foo: 'bar' }\"\ninspect(1); // => '1'\ninspect('foo'); // => \"'foo'\"\ninspect([ 1, 2, 3 ]); // => '[ 1, 2, 3 ]'\ninspect(/Test/g); // => '/Test/g'\n\n// ...\n```\n\n## Tests\n\n```bash\n$ npm test\n```\n\nCoverage:\n\n```bash\n$ npm run upload-coverage\n```\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011-2013 Jake Luer jake@alogicalparadox.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
|
||
|
"maintainers": [
|
||
|
{ "name": "chaijs", "email": "chaijs@keithcirkel.co.uk" },
|
||
|
{ "name": "chai", "email": "chaijs@keithcirkel.co.uk" }
|
||
|
],
|
||
|
"time": {
|
||
|
"modified": "2022-06-19T14:23:30.552Z",
|
||
|
"created": "2013-12-17T12:37:05.737Z",
|
||
|
"0.0.1": "2013-12-17T12:37:09.405Z",
|
||
|
"1.0.0": "2020-04-22T10:32:43.680Z",
|
||
|
"1.0.1": "2020-04-22T11:48:49.508Z",
|
||
|
"1.0.2": "2020-04-22T14:18:13.923Z",
|
||
|
"2.0.0": "2021-01-20T23:55:55.900Z",
|
||
|
"1.0.3": "2021-01-21T17:48:45.625Z",
|
||
|
"1.0.4": "2021-01-22T15:57:48.824Z",
|
||
|
"1.0.5": "2021-01-27T09:19:07.647Z",
|
||
|
"2.0.1": "2021-01-27T09:26:33.226Z",
|
||
|
"2.0.2": "2021-02-02T11:38:54.404Z",
|
||
|
"2.0.3": "2021-02-04T18:26:15.256Z",
|
||
|
"2.1.0": "2021-03-01T15:11:57.803Z",
|
||
|
"2.1.1": "2021-03-01T18:27:02.359Z",
|
||
|
"2.1.2": "2021-06-24T20:59:23.133Z",
|
||
|
"2.2.0": "2021-06-24T21:02:54.876Z",
|
||
|
"2.2.1": "2021-06-24T21:14:35.410Z",
|
||
|
"2.3.0": "2021-06-25T07:52:32.427Z",
|
||
|
"2.3.1": "2022-01-26T12:46:35.067Z",
|
||
|
"2.3.2": "2022-02-02T17:14:10.249Z",
|
||
|
"2.3.3": "2022-02-05T10:44:38.558Z",
|
||
|
"2.3.4": "2022-02-10T15:14:31.961Z"
|
||
|
},
|
||
|
"author": { "name": "Veselin Todorov", "email": "hi@vesln.com" },
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/chaijs/loupe.git"
|
||
|
},
|
||
|
"homepage": "https://github.com/chaijs/loupe",
|
||
|
"bugs": { "url": "https://github.com/chaijs/loupe/issues" },
|
||
|
"license": "MIT",
|
||
|
"readmeFilename": "README.md",
|
||
|
"contributors": [
|
||
|
{ "name": "Keith Cirkel", "url": "https://github.com/keithamus" }
|
||
|
]
|
||
|
}
|