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