.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / unist-util-stringify-position / package.json
1 {
2   "name": "unist-util-stringify-position",
3   "version": "1.1.2",
4   "description": "Stringify a Unist node, position, or point",
5   "license": "MIT",
6   "keywords": [
7     "unist",
8     "position",
9     "location",
10     "point",
11     "node",
12     "stringify",
13     "tostring",
14     "util",
15     "utility"
16   ],
17   "repository": "syntax-tree/unist-util-stringify-position",
18   "bugs": "https://github.com/syntax-tree/unist-util-stringify-position/issues",
19   "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
20   "contributors": [
21     "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
22   ],
23   "files": [
24     "index.js"
25   ],
26   "dependencies": {},
27   "devDependencies": {
28     "browserify": "^16.0.0",
29     "esmangle": "^1.0.0",
30     "nyc": "^11.0.0",
31     "prettier": "^1.12.1",
32     "remark-cli": "^5.0.0",
33     "remark-preset-wooorm": "^4.0.0",
34     "tape": "^4.5.1",
35     "xo": "^0.20.0"
36   },
37   "scripts": {
38     "format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
39     "build-bundle": "browserify index.js --no-builtins -s unistUtilStringifyPosition > unist-util-stringify-position.js",
40     "build-mangle": "esmangle unist-util-stringify-position.js > unist-util-stringify-position.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   "nyc": {
47     "check-coverage": true,
48     "lines": 100,
49     "functions": 100,
50     "branches": 100
51   },
52   "prettier": {
53     "tabWidth": 2,
54     "useTabs": false,
55     "singleQuote": true,
56     "bracketSpacing": false,
57     "semi": false,
58     "trailingComma": "none"
59   },
60   "xo": {
61     "prettier": true,
62     "esnext": false,
63     "rules": {
64       "guard-for-in": "off",
65       "no-var": "off",
66       "prefer-arrow-callback": "off"
67     },
68     "ignores": [
69       "unist-util-stringify-position.js"
70     ]
71   },
72   "remarkConfig": {
73     "plugins": [
74       "preset-wooorm"
75     ]
76   }
77 }