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