1 | {
|
2 | "name": "array-includes",
|
3 | "version": "3.1.8",
|
4 | "author": {
|
5 | "name": "Jordan Harband",
|
6 | "email": "ljharb@gmail.com",
|
7 | "url": "http://ljharb.codes"
|
8 | },
|
9 | "funding": {
|
10 | "url": "https://github.com/sponsors/ljharb"
|
11 | },
|
12 | "contributors": [
|
13 | {
|
14 | "name": "Jordan Harband",
|
15 | "email": "ljharb@gmail.com",
|
16 | "url": "http://ljharb.codes"
|
17 | }
|
18 | ],
|
19 | "description": "An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3.",
|
20 | "license": "MIT",
|
21 | "main": "index.js",
|
22 | "scripts": {
|
23 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
24 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
25 | "prepublishOnly": "safe-publish-latest",
|
26 | "pretest": "npm run --silent lint",
|
27 | "test": "npm run --silent tests-only",
|
28 | "posttest": "aud --production",
|
29 | "tests-only": "nyc tape 'test/**/*.js'",
|
30 | "prelint": "evalmd README.md",
|
31 | "lint": "eslint --ext=js,mjs .",
|
32 | "postlint": "es-shim-api --bound",
|
33 | "version": "auto-changelog && git add CHANGELOG.md",
|
34 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
35 | },
|
36 | "repository": {
|
37 | "type": "git",
|
38 | "url": "git://github.com/es-shims/array-includes.git"
|
39 | },
|
40 | "keywords": [
|
41 | "Array.prototype.includes",
|
42 | "includes",
|
43 | "array",
|
44 | "ES7",
|
45 | "shim",
|
46 | "polyfill",
|
47 | "contains",
|
48 | "Array.prototype.contains",
|
49 | "es-shim API"
|
50 | ],
|
51 | "dependencies": {
|
52 | "call-bind": "^1.0.7",
|
53 | "define-properties": "^1.2.1",
|
54 | "es-abstract": "^1.23.2",
|
55 | "es-object-atoms": "^1.0.0",
|
56 | "get-intrinsic": "^1.2.4",
|
57 | "is-string": "^1.0.7"
|
58 | },
|
59 | "devDependencies": {
|
60 | "@es-shims/api": "^2.4.2",
|
61 | "@ljharb/eslint-config": "^21.1.0",
|
62 | "aud": "^2.0.4",
|
63 | "auto-changelog": "^2.4.0",
|
64 | "eslint": "=8.8.0",
|
65 | "evalmd": "^0.0.19",
|
66 | "functions-have-names": "^1.2.3",
|
67 | "has-strict-mode": "^1.0.1",
|
68 | "in-publish": "^2.0.1",
|
69 | "indexof": "^0.0.1",
|
70 | "npmignore": "^0.3.1",
|
71 | "nyc": "^10.3.2",
|
72 | "safe-publish-latest": "^2.0.0",
|
73 | "tape": "^5.7.5"
|
74 | },
|
75 | "testling": {
|
76 | "files": [
|
77 | "test/index.js",
|
78 | "test/implementation.js",
|
79 | "test/shimmed.js"
|
80 | ],
|
81 | "browsers": [
|
82 | "iexplore/6.0..latest",
|
83 | "firefox/3.0..6.0",
|
84 | "firefox/15.0..latest",
|
85 | "firefox/nightly",
|
86 | "chrome/4.0..10.0",
|
87 | "chrome/20.0..latest",
|
88 | "chrome/canary",
|
89 | "opera/10.0..latest",
|
90 | "opera/next",
|
91 | "safari/4.0..latest",
|
92 | "ipad/6.0..latest",
|
93 | "iphone/6.0..latest",
|
94 | "android-browser/4.2"
|
95 | ]
|
96 | },
|
97 | "engines": {
|
98 | "node": ">= 0.4"
|
99 | },
|
100 | "auto-changelog": {
|
101 | "output": "CHANGELOG.md",
|
102 | "template": "keepachangelog",
|
103 | "unreleased": false,
|
104 | "commitLimit": false,
|
105 | "backfillLimit": false,
|
106 | "hideCredit": true,
|
107 | "startingVersion": "3.1.6"
|
108 | },
|
109 | "publishConfig": {
|
110 | "ignore": [
|
111 | ".github/workflows"
|
112 | ]
|
113 | }
|
114 | }
|