-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
{
"name": "rehype-prism-template",
"version": "0.4.1",
"description": "rehype plugin to highlight code blocks in HTML with Prism",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint index.js src/languages.js src/parse.js",
"format": "prettier --single-quote --write index.js src/parse.js src/languages.js",
"test-jest": "jest",
"pretest": "npm run lint",
"test": "jest",
"register": "node src/parse.js",
"register-all": "node src/parse.js all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamskok/rehype-prism-template.git"
},
"keywords": [
"rehype",
"rehype-plugin",
"syntax-highlighting",
"prism",
"template-generator"
],
"author": "Mapbox",
"contributors": [
"Vladimir Skok <skok@vova.io> (https://github.com/iamskok/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/iamskok/rehype-prism-template/issues"
},
"homepage": "https://github.com/iamskok/rehype-prism-template#readme",
"dependencies": {
"hast-util-to-string": "^1.0.0",
"refractor": "^3.0.0",
"underscore": "^1.9.1",
"unist-util-visit": "^2.0.0"
},
"devDependencies": {
"dedent": "0.7.0",
"eslint": "5.16.0",
"eslint-plugin-node": "5.2.1",
"husky": "0.14.3",
"jest": "24.1.0",
"lint-staged": "4.3.0",
"rehype": "11.0.0"
"prettier": "1.19.1"
},
"lint-staged": {
"index.js src/parse.js src/languages.js": [
"prettier --single-quote --write",
"git add"
]
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"resetMocks": true,
"testRegex": "/test\\.js$"
},
"engines": {
"node": ">=8"
}
}