This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
70 lines (70 loc) · 1.5 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
{
"name": "@mapbox/rehype-prism",
"version": "0.9.0",
"description": "rehype plugin to highlight code blocks in HTML with Prism",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"format": "prettier --write '{,lib/,test/}*.js'",
"test-jest": "jest",
"pretest": "npm run lint",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/rehype-prism.git"
},
"keywords": [
"rehype",
"rehype-plugin",
"syntax-highlighting",
"prism",
"html"
],
"author": "Mapbox",
"license": "MIT",
"bugs": {
"url": "https://github.com/mapbox/rehype-prism/issues"
},
"homepage": "https://github.com/mapbox/rehype-prism#readme",
"dependencies": {
"hast-util-to-string": "^1.0.4",
"refractor": "^3.4.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@mapbox/prettier-config-docs": "^2",
"dedent": "^0.7.0",
"eslint": "^8",
"eslint-plugin-node": "^11.1.0",
"husky": "^8",
"jest": "^29",
"lint-staged": "^15",
"prettier": "^3",
"rehype": "^11.0.0"
},
"prettier": "@mapbox/prettier-config-docs",
"lint-staged": {
"{,lib/,test/}*.js": [
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"resetMocks": true,
"testRegex": "/test\\.js$"
},
"engines": {
"node": ">=10"
}
}