UNPKG

2.18 kBJSONView Raw
1{
2 "name": "remark-breaks",
3 "version": "3.0.0",
4 "description": "remark plugin to add break support, without needing spaces",
5 "license": "MIT",
6 "keywords": [
7 "unified",
8 "remark",
9 "remark-plugin",
10 "plugin",
11 "mdast",
12 "markdown",
13 "break",
14 "newline",
15 "linefeed"
16 ],
17 "repository": "remarkjs/remark-breaks",
18 "bugs": "https://github.com/remarkjs/remark-breaks/issues",
19 "funding": {
20 "type": "opencollective",
21 "url": "https://opencollective.com/unified"
22 },
23 "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
24 "contributors": [
25 "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
26 ],
27 "sideEffects": false,
28 "type": "module",
29 "main": "index.js",
30 "types": "index.d.ts",
31 "files": [
32 "index.d.ts",
33 "index.js"
34 ],
35 "dependencies": {
36 "@types/mdast": "^3.0.0",
37 "unist-util-visit": "^4.0.0"
38 },
39 "devDependencies": {
40 "@types/tape": "^4.0.0",
41 "c8": "^7.0.0",
42 "dtslint": "^4.0.0",
43 "prettier": "^2.0.0",
44 "rehype-stringify": "^9.0.0",
45 "remark-cli": "^10.0.0",
46 "remark-parse": "^10.0.0",
47 "remark-preset-wooorm": "^8.0.0",
48 "remark-rehype": "^8.0.0",
49 "rimraf": "^3.0.0",
50 "tape": "^5.0.0",
51 "type-coverage": "^2.0.0",
52 "typescript": "^4.0.0",
53 "unified": "^10.0.0",
54 "xo": "^0.43.0"
55 },
56 "scripts": {
57 "build": "rimraf \"*.d.ts\" && tsc && type-coverage",
58 "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
59 "test-api": "node --conditions development test.js",
60 "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
61 "test-types": "dtslint types",
62 "test": "npm run build && npm run format && npm run test-coverage"
63 },
64 "prettier": {
65 "tabWidth": 2,
66 "useTabs": false,
67 "singleQuote": true,
68 "bracketSpacing": false,
69 "semi": false,
70 "trailingComma": "none"
71 },
72 "xo": {
73 "prettier": true
74 },
75 "remarkConfig": {
76 "plugins": [
77 "preset-wooorm"
78 ]
79 },
80 "typeCoverage": {
81 "atLeast": 100,
82 "detail": true,
83 "strict": true,
84 "ignoreCatch": true
85 }
86}