.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / vfile / package.json
1 {
2   "name": "vfile",
3   "version": "2.3.0",
4   "description": "Virtual file format for text processing",
5   "license": "MIT",
6   "keywords": [
7     "virtual",
8     "file",
9     "text",
10     "processing",
11     "message",
12     "warning",
13     "error",
14     "remark",
15     "retext"
16   ],
17   "repository": "vfile/vfile",
18   "bugs": "https://github.com/vfile/vfile/issues",
19   "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
20   "contributors": [
21     "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
22     "Brendan Abbott <brendan.abbott@temando.com>",
23     "Denys Dovhan <email@denysdovhan.com>",
24     "Kyle Mathews <mathews.kyle@gmail.com>",
25     "Shinnosuke Watanabe <snnskwtnb@gmail.com>",
26     "Sindre Sorhus <sindresorhus@gmail.com>"
27   ],
28   "files": [
29     "core.js",
30     "index.js"
31   ],
32   "dependencies": {
33     "is-buffer": "^1.1.4",
34     "replace-ext": "1.0.0",
35     "unist-util-stringify-position": "^1.0.0",
36     "vfile-message": "^1.0.0"
37   },
38   "devDependencies": {
39     "browserify": "^14.0.0",
40     "esmangle": "^1.0.0",
41     "nyc": "^11.0.0",
42     "remark-cli": "^4.0.0",
43     "remark-preset-wooorm": "^3.0.0",
44     "tape": "^4.4.0",
45     "xo": "^0.18.0"
46   },
47   "scripts": {
48     "build-md": "remark . -qfo",
49     "build-bundle": "browserify index.js -s VFile > vfile.js",
50     "build-mangle": "esmangle vfile.js > vfile.min.js",
51     "build": "npm run build-md && npm run build-bundle && npm run build-mangle",
52     "lint": "xo",
53     "test-api": "node test",
54     "test-coverage": "nyc --reporter lcov tape test.js",
55     "test": "npm run build && npm run lint && npm run test-coverage"
56   },
57   "nyc": {
58     "check-coverage": true,
59     "lines": 100,
60     "functions": 100,
61     "branches": 100
62   },
63   "xo": {
64     "space": true,
65     "esnext": false,
66     "rules": {
67       "unicorn/no-new-buffer": "off"
68     },
69     "ignores": [
70       "vfile.js"
71     ]
72   },
73   "remarkConfig": {
74     "plugins": [
75       "preset-wooorm"
76     ]
77   }
78 }