diff options
author | Minteck <contact@minteck.org> | 2021-12-21 16:52:28 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2021-12-21 16:52:28 +0100 |
commit | 46e43f4bde4a35785b4997b81e86cd19f046b69b (patch) | |
tree | c53c2f826f777f9d6b2d249dab556feb72a6c3a6 /src/node_modules/object-inspect/package.json | |
download | langdetect-46e43f4bde4a35785b4997b81e86cd19f046b69b.tar.gz langdetect-46e43f4bde4a35785b4997b81e86cd19f046b69b.tar.bz2 langdetect-46e43f4bde4a35785b4997b81e86cd19f046b69b.zip |
Commit
Diffstat (limited to 'src/node_modules/object-inspect/package.json')
-rw-r--r-- | src/node_modules/object-inspect/package.json | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/node_modules/object-inspect/package.json b/src/node_modules/object-inspect/package.json new file mode 100644 index 0000000..cec1f65 --- /dev/null +++ b/src/node_modules/object-inspect/package.json @@ -0,0 +1,73 @@ +{ + "name": "object-inspect", + "version": "1.9.0", + "description": "string representations of objects in node and the browser", + "main": "index.js", + "devDependencies": { + "@ljharb/eslint-config": "^17.3.0", + "aud": "^1.1.3", + "core-js": "^2.6.12", + "eslint": "^7.14.0", + "for-each": "^0.3.3", + "nyc": "^10.3.2", + "safe-publish-latest": "^1.1.4", + "string.prototype.repeat": "^1.0.0", + "tape": "^5.0.1" + }, + "scripts": { + "prepublish": "safe-publish-latest", + "pretest": "npm run lint", + "lint": "eslint .", + "test": "npm run tests-only", + "tests-only": "nyc npm run tests-only:tape", + "pretests-only:tape": "node test-core-js", + "tests-only:tape": "tape 'test/*.js'", + "posttest": "npx aud --production" + }, + "testling": { + "files": [ + "test/*.js", + "test/browser/*.js" + ], + "browsers": [ + "ie/6..latest", + "chrome/latest", + "firefox/latest", + "safari/latest", + "opera/latest", + "iphone/latest", + "ipad/latest", + "android/latest" + ] + }, + "repository": { + "type": "git", + "url": "git://github.com/inspect-js/object-inspect.git" + }, + "homepage": "https://github.com/inspect-js/object-inspect", + "keywords": [ + "inspect", + "util.inspect", + "object", + "stringify", + "pretty" + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "license": "MIT", + "browser": { + "./util.inspect.js": false + }, + "greenkeeper": { + "ignore": [ + "nyc", + "core-js" + ] + } +} |