-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "@mavrin/remark-typograf",
"version": "2.1.6",
"description": "Plugin for remark to make your typography better with typograf",
"main": "index.js",
"files": [
"index.js",
"remark-typograf.js"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"generate:site": "node ./scripts/generate.js",
"publish:site": "npm run generate:site && node ./scripts/publishSite.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mavrin/remark-typograf.git"
},
"keywords": [
"unified",
"remark",
"remark-plugin",
"plugin",
"mdast",
"markdown",
"typograf",
"text",
"typography",
"typographic"
],
"author": "Konstantin Krivlenia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mavrin/remark-typograf/issues"
},
"homepage": "https://github.com/Mavrin/remark-typograf#readme",
"dependencies": {
"lodash.escaperegexp": "^4.1.2",
"typograf": "^6.11.3",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-plugin-jest": "^24.3.4",
"gh-pages": "^5.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"remark": "13.0.0",
"remark-gfm": "1.0.0",
"remark-html": "^13.0.1",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"unified": "^9.2.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}