.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / markdown-table / package.json
1 {
2   "name": "markdown-table",
3   "version": "1.1.3",
4   "description": "Markdown/ASCII tables",
5   "license": "MIT",
6   "keywords": [
7     "text",
8     "markdown",
9     "table",
10     "align",
11     "ascii",
12     "rows",
13     "tabular"
14   ],
15   "repository": "wooorm/markdown-table",
16   "bugs": "https://github.com/wooorm/markdown-table/issues",
17   "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
18   "contributors": [
19     "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
20   ],
21   "files": [
22     "index.js"
23   ],
24   "dependencies": {},
25   "devDependencies": {
26     "browserify": "^16.0.0",
27     "chalk": "^2.0.0",
28     "nyc": "^14.0.0",
29     "prettier": "^1.12.1",
30     "remark-cli": "^6.0.0",
31     "remark-preset-wooorm": "^4.0.0",
32     "strip-ansi": "^5.0.0",
33     "tape": "^4.4.0",
34     "tinyify": "^2.5.0",
35     "xo": "^0.24.0"
36   },
37   "scripts": {
38     "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
39     "build-bundle": "browserify . -s markdownTable -o markdown-table.js",
40     "build-mangle": "browserify . -s markdownTable -p tinyify -o markdown-table.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   "remarkConfig": {
47     "plugins": [
48       "preset-wooorm"
49     ]
50   },
51   "prettier": {
52     "tabWidth": 2,
53     "useTabs": false,
54     "singleQuote": true,
55     "bracketSpacing": false,
56     "semi": false,
57     "trailingComma": "none"
58   },
59   "xo": {
60     "prettier": true,
61     "esnext": false,
62     "rules": {
63       "complexity": "off",
64       "max-depth": "off"
65     },
66     "ignores": [
67       "markdown-table.js"
68     ]
69   },
70   "nyc": {
71     "check-coverage": true,
72     "lines": 100,
73     "functions": 100,
74     "branches": 100
75   }
76 }