1 | {
|
---|
2 | "name": "object-inspect",
|
---|
3 | "version": "1.13.2",
|
---|
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.4.0",
|
---|
11 | "core-js": "^2.6.12",
|
---|
12 | "error-cause": "^1.0.8",
|
---|
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.4",
|
---|
19 | "has-symbols": "^1.0.3",
|
---|
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.0.3",
|
---|
25 | "npmignore": "^0.3.1",
|
---|
26 | "nyc": "^10.3.2",
|
---|
27 | "safe-publish-latest": "^2.0.0",
|
---|
28 | "safer-buffer": "^2.1.2",
|
---|
29 | "string.prototype.repeat": "^1.0.0",
|
---|
30 | "tape": "^5.8.1"
|
---|
31 | },
|
---|
32 | "scripts": {
|
---|
33 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
---|
34 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
---|
35 | "prepublishOnly": "safe-publish-latest",
|
---|
36 | "pretest": "npm run lint",
|
---|
37 | "lint": "eslint --ext=js,mjs .",
|
---|
38 | "postlint": "npx @pkgjs/support validate",
|
---|
39 | "test": "npm run tests-only && npm run test:corejs",
|
---|
40 | "tests-only": "nyc tape 'test/*.js'",
|
---|
41 | "test:corejs": "nyc tape test-core-js.js 'test/*.js'",
|
---|
42 | "posttest": "npx aud --production",
|
---|
43 | "version": "auto-changelog && git add CHANGELOG.md",
|
---|
44 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
---|
45 | },
|
---|
46 | "testling": {
|
---|
47 | "files": [
|
---|
48 | "test/*.js",
|
---|
49 | "test/browser/*.js"
|
---|
50 | ],
|
---|
51 | "browsers": [
|
---|
52 | "ie/6..latest",
|
---|
53 | "chrome/latest",
|
---|
54 | "firefox/latest",
|
---|
55 | "safari/latest",
|
---|
56 | "opera/latest",
|
---|
57 | "iphone/latest",
|
---|
58 | "ipad/latest",
|
---|
59 | "android/latest"
|
---|
60 | ]
|
---|
61 | },
|
---|
62 | "repository": {
|
---|
63 | "type": "git",
|
---|
64 | "url": "git://github.com/inspect-js/object-inspect.git"
|
---|
65 | },
|
---|
66 | "homepage": "https://github.com/inspect-js/object-inspect",
|
---|
67 | "keywords": [
|
---|
68 | "inspect",
|
---|
69 | "util.inspect",
|
---|
70 | "object",
|
---|
71 | "stringify",
|
---|
72 | "pretty"
|
---|
73 | ],
|
---|
74 | "author": {
|
---|
75 | "name": "James Halliday",
|
---|
76 | "email": "mail@substack.net",
|
---|
77 | "url": "http://substack.net"
|
---|
78 | },
|
---|
79 | "funding": {
|
---|
80 | "url": "https://github.com/sponsors/ljharb"
|
---|
81 | },
|
---|
82 | "license": "MIT",
|
---|
83 | "browser": {
|
---|
84 | "./util.inspect.js": false
|
---|
85 | },
|
---|
86 | "auto-changelog": {
|
---|
87 | "output": "CHANGELOG.md",
|
---|
88 | "template": "keepachangelog",
|
---|
89 | "unreleased": false,
|
---|
90 | "commitLimit": false,
|
---|
91 | "backfillLimit": false,
|
---|
92 | "hideCredit": true
|
---|
93 | },
|
---|
94 | "publishConfig": {
|
---|
95 | "ignore": [
|
---|
96 | ".github/workflows",
|
---|
97 | "./test-core-js.js"
|
---|
98 | ]
|
---|
99 | },
|
---|
100 | "support": true,
|
---|
101 | "engines": {
|
---|
102 | "node": ">= 0.4"
|
---|
103 | }
|
---|
104 | }
|
---|