.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / vfile-location / package.json
1 {
2   "name": "vfile-location",
3   "version": "2.0.6",
4   "description": "Convert between positions (line and column-based) and offsets (range-based) locations in a virtual file",
5   "license": "MIT",
6   "keywords": [
7     "remark",
8     "comment",
9     "message",
10     "marker",
11     "control"
12   ],
13   "repository": "vfile/vfile-location",
14   "bugs": "https://github.com/vfile/vfile-location/issues",
15   "funding": {
16     "type": "opencollective",
17     "url": "https://opencollective.com/unified"
18   },
19   "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
20   "contributors": [
21     "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
22   ],
23   "files": [
24     "index.js"
25   ],
26   "dependencies": {},
27   "devDependencies": {
28     "browserify": "^16.0.0",
29     "nyc": "^14.0.0",
30     "prettier": "^1.0.0",
31     "remark-cli": "^7.0.0",
32     "remark-preset-wooorm": "^6.0.0",
33     "tape": "^4.0.0",
34     "tinyify": "^2.0.0",
35     "vfile": "^4.0.0",
36     "xo": "^0.25.0"
37   },
38   "scripts": {
39     "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
40     "build-bundle": "browserify . -s vfileLocation > vfile-location.js",
41     "build-mangle": "browserify . -s vfileLocation -p tinyify > vfile-location.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       "vfile-location.js"
66     ]
67   },
68   "remarkConfig": {
69     "plugins": [
70       "preset-wooorm"
71     ]
72   }
73 }