.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / vfile-message / package.json
1 {
2   "name": "vfile-message",
3   "version": "1.1.1",
4   "description": "Create a virtual message",
5   "license": "MIT",
6   "keywords": [
7     "vfile",
8     "virtual",
9     "message"
10   ],
11   "repository": "vfile/vfile-message",
12   "bugs": "https://github.com/vfile/vfile-message/issues",
13   "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
14   "contributors": [
15     "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
16   ],
17   "files": [
18     "index.js"
19   ],
20   "dependencies": {
21     "unist-util-stringify-position": "^1.1.1"
22   },
23   "devDependencies": {
24     "browserify": "^16.0.0",
25     "nyc": "^13.0.0",
26     "prettier": "^1.12.1",
27     "remark-cli": "^6.0.0",
28     "remark-preset-wooorm": "^4.0.0",
29     "tape": "^4.0.0",
30     "tinyify": "^2.4.3",
31     "xo": "^0.23.0"
32   },
33   "scripts": {
34     "format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
35     "build-bundle": "browserify . -s vfileMessage > vfile-message.js",
36     "build-mangle": "browserify . -s vfileMessage -p tinyify > vfile-message.min.js",
37     "build": "npm run build-bundle && npm run build-mangle",
38     "test-api": "node test",
39     "test-coverage": "nyc --reporter lcov tape test.js",
40     "test": "npm run format && npm run build && npm run test-coverage"
41   },
42   "nyc": {
43     "check-coverage": true,
44     "lines": 100,
45     "functions": 100,
46     "branches": 100
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     "rules": {
60       "no-var": "off",
61       "prefer-arrow-callback": "off",
62       "object-shorthand": "off"
63     },
64     "ignores": [
65       "vfile-message.js"
66     ]
67   },
68   "remarkConfig": {
69     "plugins": [
70       "preset-wooorm"
71     ]
72   }
73 }