-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
97 lines (97 loc) · 2.73 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "md-padding",
"version": "1.9.2",
"description": "修复 Markdown 中的混排空格:中英文、数字、链接等。",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test",
"example": "example"
},
"files": [
"bin",
"dist",
"index.d.ts",
"*.json",
"*.md"
],
"bin": {
"mdp": "./dist/bin/md-padding.js",
"md-padding": "./dist/bin/md-padding.js"
},
"scripts": {
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"docs": "typedoc --out docs src && touch docs/.nojekyll",
"build": "tsc && chmod a+x dist/bin/*",
"build-watch": "tsc --watch",
"test": "jest",
"coverage": "jest --coverage",
"version": "npm run build && npm run docs",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/harttle/md-padding.git"
},
"author": "harttle <yangjvn@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/harttle/md-padding/issues"
},
"homepage": "https://github.com/harttle/md-padding#readme",
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.16.7",
"@jest/transform": "^29.7.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.2",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/jest": "^25.1.1",
"@types/yargs": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"coveralls": "^3.0.9",
"eslint": "8.56",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.7.0",
"semantic-release": "^17.0.2",
"source-map-support": "^0.5.16",
"typedoc": "^0.26.9",
"typescript": "^5.4.5"
},
"dependencies": {
"yargs": "^17.7.2"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}