-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "mdast-excerpt",
"version": "0.0.10",
"description": "Build an excerpt from a markdown AST",
"keywords": [
"mdast",
"transform",
"excerpt",
"truncate",
"summary",
"dot-dot-dot",
"markdown"
],
"homepage": "https://github.com/jwbargsten/mdast-excerpt#readme",
"bugs": {
"url": "https://github.com/jwbargsten/mdast-excerpt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwbargsten/mdast-excerpt.git"
},
"license": "MIT",
"author": "Joachim Bargsten <jw@bargsten.org> (https://bargsten.org)",
"main": "dist/index.js",
"module": "dist/mdast-excerpt.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"check-ts": "tsc --noEmit",
"dev": "rollup -c -w",
"fmt": "prettier --write .",
"lint": "eslint --fix .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest test"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.170",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"import-sort-style-module": "^6.0.0",
"jest": "^27.2.3",
"prettier": "^2.4.1",
"prettier-plugin-import-sort": "^0.0.7",
"prettier-plugin-packagejson": "^2.2.13",
"remark": "^14.0.1",
"remark-html": "^14.0.1",
"remark-parse": "^10.0.0",
"remark-stringify": "^10.0.0",
"rollup": "^2.57.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.2.0",
"typescript": "^4.4.3",
"unified": "^10.1.0"
},
"engines": {
"node": ">=12"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}