| [9af201e] | 1 | {
|
|---|
| 2 | "name": "object.values",
|
|---|
| 3 | "version": "1.2.1",
|
|---|
| 4 | "author": "Jordan Harband <ljharb@gmail.com>",
|
|---|
| 5 | "funding": {
|
|---|
| 6 | "url": "https://github.com/sponsors/ljharb"
|
|---|
| 7 | },
|
|---|
| 8 | "description": "ES2017 spec-compliant Object.values shim.",
|
|---|
| 9 | "license": "MIT",
|
|---|
| 10 | "main": "index.js",
|
|---|
| 11 | "scripts": {
|
|---|
| 12 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
|---|
| 13 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
|---|
| 14 | "prepublishOnly": "safe-publish-latest",
|
|---|
| 15 | "pretest": "npm run lint",
|
|---|
| 16 | "test": "npm run tests-only",
|
|---|
| 17 | "posttest": "npx npm@'>= 10.2' audit --production",
|
|---|
| 18 | "tests-only": "nyc tape 'test/**/*.js'",
|
|---|
| 19 | "lint": "eslint --ext=js,mjs .",
|
|---|
| 20 | "postlint": "es-shim-api --bound",
|
|---|
| 21 | "version": "auto-changelog && git add CHANGELOG.md",
|
|---|
| 22 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|---|
| 23 | },
|
|---|
| 24 | "repository": {
|
|---|
| 25 | "type": "git",
|
|---|
| 26 | "url": "git://github.com/es-shims/Object.values.git"
|
|---|
| 27 | },
|
|---|
| 28 | "keywords": [
|
|---|
| 29 | "Object.values",
|
|---|
| 30 | "Object.keys",
|
|---|
| 31 | "Object.entries",
|
|---|
| 32 | "values",
|
|---|
| 33 | "ES7",
|
|---|
| 34 | "ES8",
|
|---|
| 35 | "ES2017",
|
|---|
| 36 | "shim",
|
|---|
| 37 | "object",
|
|---|
| 38 | "keys",
|
|---|
| 39 | "entries",
|
|---|
| 40 | "polyfill",
|
|---|
| 41 | "es-shim API"
|
|---|
| 42 | ],
|
|---|
| 43 | "dependencies": {
|
|---|
| 44 | "call-bind": "^1.0.8",
|
|---|
| 45 | "call-bound": "^1.0.3",
|
|---|
| 46 | "define-properties": "^1.2.1",
|
|---|
| 47 | "es-object-atoms": "^1.0.0"
|
|---|
| 48 | },
|
|---|
| 49 | "devDependencies": {
|
|---|
| 50 | "@es-shims/api": "^2.5.1",
|
|---|
| 51 | "@ljharb/eslint-config": "^21.1.1",
|
|---|
| 52 | "array.prototype.map": "^1.0.7",
|
|---|
| 53 | "auto-changelog": "^2.5.0",
|
|---|
| 54 | "encoding": "^0.1.13",
|
|---|
| 55 | "eslint": "=8.8.0",
|
|---|
| 56 | "functions-have-names": "^1.2.3",
|
|---|
| 57 | "has-strict-mode": "^1.0.1",
|
|---|
| 58 | "in-publish": "^2.0.1",
|
|---|
| 59 | "npmignore": "^0.3.1",
|
|---|
| 60 | "nyc": "^10.3.2",
|
|---|
| 61 | "object-keys": "^1.1.1",
|
|---|
| 62 | "safe-publish-latest": "^2.0.0",
|
|---|
| 63 | "tape": "^5.9.0"
|
|---|
| 64 | },
|
|---|
| 65 | "testling": {
|
|---|
| 66 | "files": "test/index.js",
|
|---|
| 67 | "browsers": [
|
|---|
| 68 | "iexplore/9.0..latest",
|
|---|
| 69 | "firefox/4.0..6.0",
|
|---|
| 70 | "firefox/15.0..latest",
|
|---|
| 71 | "firefox/nightly",
|
|---|
| 72 | "chrome/4.0..10.0",
|
|---|
| 73 | "chrome/20.0..latest",
|
|---|
| 74 | "chrome/canary",
|
|---|
| 75 | "opera/11.6..latest",
|
|---|
| 76 | "opera/next",
|
|---|
| 77 | "safari/5.0..latest",
|
|---|
| 78 | "ipad/6.0..latest",
|
|---|
| 79 | "iphone/6.0..latest",
|
|---|
| 80 | "android-browser/4.2"
|
|---|
| 81 | ]
|
|---|
| 82 | },
|
|---|
| 83 | "engines": {
|
|---|
| 84 | "node": ">= 0.4"
|
|---|
| 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 | ]
|
|---|
| 98 | }
|
|---|
| 99 | }
|
|---|