UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

92 lines (91 loc) 2.01 kB
{ "name": "unist-util-remove", "version": "2.1.0", "description": "unist utility to remove nodes from a tree", "license": "MIT", "keywords": [ "unist", "unist-util", "util", "utility", "ast", "tree", "node", "cascade", "delete", "mutable", "remove", "squeeze", "strip" ], "repository": "syntax-tree/unist-util-remove", "bugs": "https://github.com/syntax-tree/unist-util-remove/issues", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" }, "author": "Eugene Sharygin <eush77@gmail.com>", "contributors": [ "Eugene Sharygin <eush77@gmail.com>", "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)" ], "files": [ "index.js", "types/index.d.ts" ], "types": "types/index.d.ts", "dependencies": { "unist-util-is": "^4.0.0" }, "devDependencies": { "dtslint": "^4.0.0", "nyc": "^15.0.0", "prettier": "^2.0.0", "remark-cli": "^9.0.0", "remark-preset-wooorm": "^8.0.0", "tape": "^5.0.0", "unist-builder": "^2.0.0", "xo": "^0.38.0" }, "scripts": { "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix", "test-api": "node test", "test-coverage": "nyc --reporter lcov tape test.js", "test-types": "dtslint types", "test": "npm run format && npm run test-coverage && npm run test-types" }, "nyc": { "check-coverage": true, "lines": 100, "functions": 100, "branches": 100 }, "prettier": { "tabWidth": 2, "useTabs": false, "singleQuote": true, "bracketSpacing": false, "semi": false, "trailingComma": "none" }, "xo": { "prettier": true, "esnext": false, "rules": { "eqeqeq": [ "error", "always", { "null": "ignore" } ], "no-eq-null": "off", "unicorn/explicit-length-check": "off" } }, "remarkConfig": { "plugins": [ "preset-wooorm" ] } }