source: node_modules/object-inspect/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.6 KB
Line 
1{
2 "name": "object-inspect",
3 "version": "1.13.1",
4 "description": "string representations of objects in node and the browser",
5 "main": "index.js",
6 "sideEffects": false,
7 "devDependencies": {
8 "@ljharb/eslint-config": "^21.1.0",
9 "@pkgjs/support": "^0.0.6",
10 "auto-changelog": "^2.4.0",
11 "core-js": "^2.6.12",
12 "error-cause": "^1.0.6",
13 "es-value-fixtures": "^1.4.2",
14 "eslint": "=8.8.0",
15 "for-each": "^0.3.3",
16 "functions-have-names": "^1.2.3",
17 "glob": "=10.3.7",
18 "globalthis": "^1.0.3",
19 "has-tostringtag": "^1.0.0",
20 "in-publish": "^2.0.1",
21 "jackspeak": "=2.1.1",
22 "make-arrow-function": "^1.2.0",
23 "mock-property": "^1.0.2",
24 "npmignore": "^0.3.0",
25 "nyc": "^10.3.2",
26 "safe-publish-latest": "^2.0.0",
27 "string.prototype.repeat": "^1.0.0",
28 "tape": "^5.7.1"
29 },
30 "scripts": {
31 "prepack": "npmignore --auto --commentLines=autogenerated",
32 "prepublish": "not-in-publish || npm run prepublishOnly",
33 "prepublishOnly": "safe-publish-latest",
34 "pretest": "npm run lint",
35 "lint": "eslint --ext=js,mjs .",
36 "postlint": "npx @pkgjs/support validate",
37 "test": "npm run tests-only && npm run test:corejs",
38 "tests-only": "nyc tape 'test/*.js'",
39 "test:corejs": "nyc tape test-core-js.js 'test/*.js'",
40 "posttest": "npx aud --production",
41 "version": "auto-changelog && git add CHANGELOG.md",
42 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
43 },
44 "testling": {
45 "files": [
46 "test/*.js",
47 "test/browser/*.js"
48 ],
49 "browsers": [
50 "ie/6..latest",
51 "chrome/latest",
52 "firefox/latest",
53 "safari/latest",
54 "opera/latest",
55 "iphone/latest",
56 "ipad/latest",
57 "android/latest"
58 ]
59 },
60 "repository": {
61 "type": "git",
62 "url": "git://github.com/inspect-js/object-inspect.git"
63 },
64 "homepage": "https://github.com/inspect-js/object-inspect",
65 "keywords": [
66 "inspect",
67 "util.inspect",
68 "object",
69 "stringify",
70 "pretty"
71 ],
72 "author": {
73 "name": "James Halliday",
74 "email": "mail@substack.net",
75 "url": "http://substack.net"
76 },
77 "funding": {
78 "url": "https://github.com/sponsors/ljharb"
79 },
80 "license": "MIT",
81 "browser": {
82 "./util.inspect.js": false
83 },
84 "auto-changelog": {
85 "output": "CHANGELOG.md",
86 "template": "keepachangelog",
87 "unreleased": false,
88 "commitLimit": false,
89 "backfillLimit": false,
90 "hideCredit": true
91 },
92 "publishConfig": {
93 "ignore": [
94 ".github/workflows",
95 "./test-core-js.js"
96 ]
97 },
98 "support": true
99}
Note: See TracBrowser for help on using the repository browser.