.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / unist-util-remove-position / package.json
1 {
2   "name": "unist-util-remove-position",
3   "version": "1.1.4",
4   "description": "Remove `position`s from a unist tree",
5   "license": "MIT",
6   "keywords": [
7     "unist",
8     "utility",
9     "remove",
10     "position",
11     "location"
12   ],
13   "repository": "syntax-tree/unist-util-remove-position",
14   "bugs": "https://github.com/syntax-tree/unist-util-remove-position/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     "unist-util-visit": "^1.1.0"
28   },
29   "devDependencies": {
30     "browserify": "^16.0.0",
31     "nyc": "^14.0.0",
32     "prettier": "^1.0.0",
33     "remark": "^11.0.0",
34     "remark-cli": "^7.0.0",
35     "remark-preset-wooorm": "^6.0.0",
36     "tape": "^4.0.0",
37     "tinyify": "^2.0.0",
38     "unist-builder": "^2.0.0",
39     "xo": "^0.25.0"
40   },
41   "scripts": {
42     "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
43     "build-bundle": "browserify . -s unistUtilRemovePosition > unist-util-remove-position.js",
44     "build-mangle": "browserify . -s unistUtilRemovePosition -p tinyify > unist-util-remove-position.min.js",
45     "build": "npm run build-bundle && npm run build-mangle",
46     "test-api": "node test",
47     "test-coverage": "nyc --reporter lcov tape test.js",
48     "test": "npm run format && npm run build && npm run test-coverage"
49   },
50   "prettier": {
51     "tabWidth": 2,
52     "useTabs": false,
53     "singleQuote": true,
54     "bracketSpacing": false,
55     "semi": false,
56     "trailingComma": "none"
57   },
58   "xo": {
59     "prettier": true,
60     "esnext": false,
61     "ignores": [
62       "unist-util-remove-position.js"
63     ]
64   },
65   "nyc": {
66     "check-coverage": true,
67     "lines": 100,
68     "functions": 100,
69     "branches": 100
70   },
71   "remarkConfig": {
72     "plugins": [
73       "preset-wooorm"
74     ]
75   }
76 }