array-includes-all
Version:
Check if an array includes all the elements of another array
52 lines (51 loc) • 1.04 kB
JSON
{
"name": "array-includes-all",
"version": "2.0.0",
"description": "Check if an array includes all the elements of another array",
"repository": "shinnn/array-includes-all",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"prebuild": "eslint --fix --format=codeframe index.mjs test.js",
"build": "rollup --config=node:module",
"pretest": "npm run-script build",
"test": "nyc --reporter=html --reporter=text node test.js"
},
"license": "ISC",
"files": [
"index.js",
"index.mjs"
],
"module": "index.mjs",
"keywords": [
"arr",
"array",
"check",
"true",
"false",
"bool",
"boolean",
"if",
"include",
"includes",
"have",
"has",
"contain",
"contains",
"browser",
"client-side"
],
"dependencies": {
"append-type": "^1.0.1"
},
"devDependencies": {
"@shinnn/eslint-config": "^5.4.0",
"eslint": "^4.19.1",
"nyc": "^11.7.0",
"rollup": "^0.58.0",
"rollup-config-module": "^2.0.0",
"tape": "^4.9.0"
},
"eslintConfig": {
"extends": "@shinnn"
}
}