.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / unist-util-find-all-after / package.json
1 {
2   "name": "unist-util-find-all-after",
3   "version": "1.0.5",
4   "description": "Utility to find nodes after another node",
5   "license": "MIT",
6   "keywords": [
7     "unist",
8     "node",
9     "find",
10     "after",
11     "util",
12     "utility"
13   ],
14   "repository": "syntax-tree/unist-util-find-all-after",
15   "bugs": "https://github.com/syntax-tree/unist-util-find-all-after/issues",
16   "funding": {
17     "type": "opencollective",
18     "url": "https://opencollective.com/unified"
19   },
20   "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
21   "contributors": [
22     "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
23   ],
24   "dependencies": {
25     "unist-util-is": "^3.0.0"
26   },
27   "devDependencies": {
28     "browserify": "^16.0.0",
29     "nyc": "^14.0.0",
30     "prettier": "^1.0.0",
31     "remark": "^11.0.0",
32     "remark-cli": "^7.0.0",
33     "remark-preset-wooorm": "^6.0.0",
34     "tape": "^4.0.0",
35     "tinyify": "^2.0.0",
36     "xo": "^0.25.0"
37   },
38   "scripts": {
39     "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
40     "build-bundle": "browserify . -s unistUtilFindAllAfter -o unist-util-find-all-after.js",
41     "build-mangle": "browserify . -s unistUtilFindAllAfter -p tinyify -o unist-util-find-all-after.min.js",
42     "build": "npm run build-bundle && npm run build-mangle",
43     "test-api": "node test",
44     "test-coverage": "nyc --reporter lcov tape test.js",
45     "test": "npm run format && npm run build && npm run test-coverage"
46   },
47   "nyc": {
48     "check-coverage": true,
49     "lines": 100,
50     "functions": 100,
51     "branches": 100
52   },
53   "prettier": {
54     "tabWidth": 2,
55     "useTabs": false,
56     "singleQuote": true,
57     "bracketSpacing": false,
58     "semi": false,
59     "trailingComma": "none"
60   },
61   "xo": {
62     "prettier": true,
63     "esnext": false,
64     "rules": {
65       "guard-for-in": "off"
66     },
67     "ignore": [
68       "unist-util-find-all-after.js"
69     ]
70   },
71   "remarkConfig": {
72     "plugins": [
73       "preset-wooorm"
74     ]
75   }
76 }