source: frontend/node_modules/object-inspect/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

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