1{
2  "name": "unified",
3  "version": "6.2.0",
4  "description": "Pluggable text processing interface",
5  "license": "MIT",
6  "keywords": [
7    "process",
8    "parse",
9    "transform",
10    "compile",
11    "stringify",
12    "rehype",
13    "retext",
14    "remark"
15  ],
16  "repository": "unifiedjs/unified",
17  "bugs": "https://github.com/unifiedjs/unified/issues",
18  "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
19  "contributors": [
20    "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
21  ],
22  "files": [
23    "index.js",
24    "lib"
25  ],
26  "dependencies": {
27    "bail": "^1.0.0",
28    "extend": "^3.0.0",
29    "is-plain-obj": "^1.1.0",
30    "trough": "^1.0.0",
31    "vfile": "^2.0.0",
32    "x-is-string": "^0.1.0"
33  },
34  "devDependencies": {
35    "browserify": "^16.0.0",
36    "esmangle": "^1.0.0",
37    "nyc": "^11.0.0",
38    "prettier": "^1.12.1",
39    "remark-cli": "^5.0.0",
40    "remark-preset-wooorm": "^4.0.0",
41    "tape": "^4.4.0",
42    "xo": "^0.20.0"
43  },
44  "scripts": {
45    "format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
46    "build-bundle": "browserify index.js -s unified > unified.js",
47    "build-mangle": "esmangle unified.js > unified.min.js",
48    "build": "npm run build-bundle && npm run build-mangle",
49    "test-api": "node test",
50    "test-coverage": "nyc --reporter lcov tape test",
51    "test": "npm run format && npm run build && npm run test-coverage"
52  },
53  "nyc": {
54    "check-coverage": true,
55    "lines": 100,
56    "functions": 100,
57    "branches": 100
58  },
59  "prettier": {
60    "tabWidth": 2,
61    "useTabs": false,
62    "singleQuote": true,
63    "bracketSpacing": false,
64    "semi": false,
65    "trailingComma": "none"
66  },
67  "xo": {
68    "prettier": true,
69    "esnext": false,
70    "rules": {
71      "guard-for-in": "off",
72      "no-var": "off",
73      "object-shorthand": "off",
74      "prefer-arrow-callback": "off",
75      "unicorn/prefer-type-error": "off"
76    },
77    "ignores": [
78      "unified.js"
79    ]
80  },
81  "remarkConfig": {
82    "plugins": [
83      "preset-wooorm"
84    ]
85  }
86}
87