.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / longest-streak / package.json
1 {
2   "name": "longest-streak",
3   "version": "2.0.4",
4   "description": "Count the longest repeating streak of a character",
5   "license": "MIT",
6   "keywords": [
7     "count",
8     "length",
9     "longest",
10     "repeating",
11     "streak",
12     "character"
13   ],
14   "repository": "wooorm/longest-streak",
15   "bugs": "https://github.com/wooorm/longest-streak/issues",
16   "funding": {
17     "type": "github",
18     "url": "https://github.com/sponsors/wooorm"
19   },
20   "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
21   "contributors": [
22     "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
23   ],
24   "files": [
25     "index.js"
26   ],
27   "dependencies": {},
28   "devDependencies": {
29     "browserify": "^16.0.0",
30     "nyc": "^15.0.0",
31     "prettier": "^1.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 longestStreak -o longest-streak.js",
41     "build-mangle": "browserify . -s longestStreak -p tinyify -o longest-streak.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     "ignores": [
65       "longest-streak.js"
66     ]
67   },
68   "remarkConfig": {
69     "plugins": [
70       "preset-wooorm"
71     ]
72   }
73 }