-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "remark-excerpt",
"description": "Remark transformer for extracting an excerpt.",
"version": "1.0.0-beta.1",
"author": {
"name": "Michael Novotny",
"email": "[email protected]",
"url": "https://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/remark-excerpt.git"
},
"keywords": [
"excerpt",
"markdown",
"more",
"preview",
"remark",
"remark-plugin",
"teaser"
],
"engines": {
"node": ">=16.0.0"
},
"main": "index.js",
"scripts": {
"check": "npm-check -u",
"coverage": "jest --coverage",
"example": "node example/example.js",
"lint": "eslint . --ext .json --ext .js",
"lint-staged": "lint-staged",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"test": "npm run lint && npm run prettier:check && npm run coverage",
"unit": "jest"
},
"git": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"unist-util-visit": "1.4.0"
},
"devDependencies": {
"@vercel/git-hooks": "1.0.0",
"eslint": "8.8.0",
"eslint-config-get-off-my-lawn": "7.1.0",
"jest": "29.2.2",
"jest-snapshot-serializer-raw": "1.2.0",
"lint-staged": "13.0.3",
"npm-check": "6.0.1",
"prettier": "2.7.1",
"prettier-config-get-off-my-lawn": "1.0.0",
"remark": "10.0.1",
"to-vfile": "5.0.2"
}
}