.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / unist-util-find-all-after / package.json
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/unist-util-find-all-after/package.json b/.config/coc/extensions/node_modules/coc-prettier/node_modules/unist-util-find-all-after/package.json
new file mode 100644 (file)
index 0000000..62231a2
--- /dev/null
@@ -0,0 +1,76 @@
+{
+  "name": "unist-util-find-all-after",
+  "version": "1.0.5",
+  "description": "Utility to find nodes after another node",
+  "license": "MIT",
+  "keywords": [
+    "unist",
+    "node",
+    "find",
+    "after",
+    "util",
+    "utility"
+  ],
+  "repository": "syntax-tree/unist-util-find-all-after",
+  "bugs": "https://github.com/syntax-tree/unist-util-find-all-after/issues",
+  "funding": {
+    "type": "opencollective",
+    "url": "https://opencollective.com/unified"
+  },
+  "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
+  "contributors": [
+    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
+  ],
+  "dependencies": {
+    "unist-util-is": "^3.0.0"
+  },
+  "devDependencies": {
+    "browserify": "^16.0.0",
+    "nyc": "^14.0.0",
+    "prettier": "^1.0.0",
+    "remark": "^11.0.0",
+    "remark-cli": "^7.0.0",
+    "remark-preset-wooorm": "^6.0.0",
+    "tape": "^4.0.0",
+    "tinyify": "^2.0.0",
+    "xo": "^0.25.0"
+  },
+  "scripts": {
+    "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
+    "build-bundle": "browserify . -s unistUtilFindAllAfter -o unist-util-find-all-after.js",
+    "build-mangle": "browserify . -s unistUtilFindAllAfter -p tinyify -o unist-util-find-all-after.min.js",
+    "build": "npm run build-bundle && npm run build-mangle",
+    "test-api": "node test",
+    "test-coverage": "nyc --reporter lcov tape test.js",
+    "test": "npm run format && npm run build && npm run test-coverage"
+  },
+  "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": {
+      "guard-for-in": "off"
+    },
+    "ignore": [
+      "unist-util-find-all-after.js"
+    ]
+  },
+  "remarkConfig": {
+    "plugins": [
+      "preset-wooorm"
+    ]
+  }
+}