UNPKG

1.58 kBJSONView Raw
1{
2 "name": "mdast-squeeze-paragraphs",
3 "version": "3.0.4",
4 "description": "Remove empty paragraphs from mdast tree",
5 "license": "MIT",
6 "keywords": [
7 "mdast",
8 "squeeze",
9 "remove",
10 "empty",
11 "paragraph",
12 "whitespace",
13 "ast",
14 "transform",
15 "transformation",
16 "util",
17 "clean"
18 ],
19 "repository": "syntax-tree/mdast-squeeze-paragraphs",
20 "bugs": "https://github.com/syntax-tree/mdast-squeeze-paragraphs/issues",
21 "author": "Eugene Sharygin <eush77@gmail.com>",
22 "contributors": [
23 "Eugene Sharygin <eush77@gmail.com>",
24 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
25 ],
26 "files": [
27 "index.js"
28 ],
29 "dependencies": {
30 "unist-util-remove": "^1.0.0"
31 },
32 "devDependencies": {
33 "nyc": "^13.0.0",
34 "prettier": "^1.14.2",
35 "remark-cli": "^6.0.0",
36 "remark-preset-wooorm": "^4.0.0",
37 "tape": "^4.0.0",
38 "unist-builder": "^1.0.0",
39 "xo": "^0.23.0"
40 },
41 "scripts": {
42 "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
43 "test-api": "node test",
44 "test-coverage": "nyc --reporter lcov tape test.js",
45 "test": "npm run format && 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 },
65 "remarkConfig": {
66 "plugins": [
67 "preset-wooorm"
68 ]
69 }
70}