-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 1.6 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
{
"name": "mdx-prism",
"version": "0.3.4",
"description": "A fork of the rehype-prism plugin to highlight code blocks in HTML with Prism and more",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint .",
"format": "prettier --single-quote --write '{,lib/,test/}*.js'",
"test-jest": "jest",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j0lv3r4/mdx-prism.git"
},
"keywords": [
"rehype",
"rehype-plugin",
"mdx-plugin",
"syntax-highlighting",
"prism",
"html"
],
"author": "Juan Olvera <[email protected]> (https://jolvera.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/j0lv3r4/mdx-prism/issues"
},
"homepage": "https://github.com/j0lv3r4/mdx-prism#readme",
"dependencies": {
"hast-util-to-string": "^1.0.0",
"parse-numeric-range": "^0.0.2",
"refractor": "3.3.0",
"rehype": "^11.0.0",
"rehype-parse": "^7.0.1",
"unified": "^9.2.1",
"unist-util-visit": "^1.1.3"
},
"devDependencies": {
"dedent": "^0.7.0",
"eslint": "^4.0.0",
"eslint-plugin-node": "^5.0.0",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4"
},
"lint-staged": {
"{,lib/,test/}*.js": [
"prettier --single-quote --write",
"git add"
]
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"resetMocks": true,
"testRegex": "/test\\.js$"
},
"engines": {
"node": ">=6"
},
"np": {
"yarn": false
}
}