-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 KB
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
{
"name": "markdown-it-progress",
"version": "0.0.0-development",
"description": "Progress bar plugin for markdown-it markdown parser",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"test": "nyc mocha src/index.test.js",
"test:w": "mocha src/index.test.js -w",
"semantic-release": "semantic-release",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "rimraf dist",
"build": "babel --out-dir dist --ignore *.test.js src"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/tlylt/markdown-it-progress.git"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"progress-bar"
],
"author": "tlylt <liu_yongliang@hotmail.com> (https://github.com/tlylt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tlylt/markdown-it-progress/issues"
},
"homepage": "https://github.com/tlylt/markdown-it-progress#readme",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"chai": "^4.3.4",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"markdown-it": "^12.3.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
]
}
}