-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "remark-pangu",
"version": "0.0.0-development",
"description": "Remark plugin to Automatically insert whitespace between CJK (Chinese, Japanese, Korean) and half-width characters (alphabetical letters, numerical digits and symbols) by using pangu.js",
"main": "index.js",
"files": [
"index.js",
"defaults.js",
"set-options.js"
],
"scripts": {
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/VincentBel/remark-pangu.git"
},
"keywords": [
"pangu",
"remark",
"plugin",
"spacing"
],
"author": "VincentBel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/VincentBel/remark-pangu/issues"
},
"homepage": "https://github.com/VincentBel/remark-pangu#readme",
"dependencies": {
"pangu": "^4.0.7",
"unist-util-is": "^4.0.2",
"unist-util-visit": "^2.0.2"
},
"devDependencies": {
"jest": "^25.5.4",
"remark-footnotes": "^1.0.0",
"remark-frontmatter": "^2.0.0",
"remark-parse": "^8.0.2",
"remark-stringify": "^8.0.0",
"semantic-release": "^17.0.7",
"unified": "^9.0.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests-config/setup.js"
],
"snapshotSerializers": [
"<rootDir>/tests-config/raw-serializer.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"index.js"
]
},
"engines": {
"node": ">=10"
}
}