-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "prettier-plugin-md-nocjsp",
"version": "1.5.1",
"description": "Prettier Markdown plugin to prevent inserting spaces between Chinese or Japanese & latin latters",
"main": "dist/main.js",
"repository": "https://github.com/tats-u/prettier-plugin-md-nocjsp",
"author": "Tatsunori Uchino",
"license": "MIT",
"keywords": [
"prettier",
"plugin",
"prettier-plugin",
"markdown",
"japanese",
"space",
"patch"
],
"files": [
"dist/main.js"
],
"scripts": {
"test": "run-p test:prettier test:jest",
"test:ci": "run-s test:prettier test:jest",
"test:prettier": "prettier --plugin . ./assets/*.md ./assets/*.mdx ./README.md -c",
"test:dev": "prettier --plugin ./src ./assets/*.md ./assets/*.mdx ./README.md -c",
"test:jest": "jest",
"format-md": "prettier --plugin . ./assets/*.md ./assets/*.mdx ./README.md -w",
"build": "rollup -c",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "13.0.6",
"cjk-regex": "2.0.1",
"escape-string-regexp": "4.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "28.1.0",
"linguist-languages": "7.21.0",
"lodash": "4.17.21",
"npm-run-all": "^4.1.5",
"outdent": "0.8.0",
"prettier": "2.8.0",
"remark-footnotes": "2.0.0",
"remark-math": "3.0.1",
"remark-parse": "8.0.3",
"rollup": "2.60.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "7.3.7",
"string-width": "4.2.3",
"unified": "9.2.1"
},
"peerDependencies": {
"prettier": "2.x"
}
}