-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.57 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.57 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
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
{
"name": "markdown-magic-transform-badges",
"description": "A markdown-magic transform to generate badges",
"version": "1.4.0",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"fix": "npm run lint:fix && npm run format && npm run format:package",
"format": "prettier --write .",
"format:package": "prettier --write package.json",
"lint": "eslint . --ext .js,.json,.yaml,.yml,.md",
"lint:fix": "eslint . --ext .js,.json,.yaml,.yml,.md --fix",
"docs": "npx markdown-magic README.md --config ./markdown-magic.config.js",
"prep": "npm run docs && npm run fix"
},
"scriptsMeta": {
"docs": {
"description": "Generate documentation by processing README.md with markdown-magic.",
"category": "documentation"
},
"fix": {
"description": "Automatically fix linting issues and format codebase.",
"category": "precommit"
},
"format": {
"description": "Format all project files using Prettier.",
"category": "precommit"
},
"format:package": {
"description": "Format the package.json file using Prettier.",
"category": "precommit"
},
"lint": {
"description": "Lint all project files to ensure code quality and consistency.",
"category": "verification"
},
"lint:fix": {
"description": "Lint all project files and automatically fix issues where possible.",
"category": "precommit"
},
"prep": {
"description": "Prepare the project for publishing by generating docs and formatting code.",
"category": "precommit"
},
"test": {
"description": "Run the test suite using Jest.",
"category": "verification"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioncakephper/markdown-magic-transform-badges.git"
},
"files": [
"index.js",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"RULES_OF_CONDUCT.md"
],
"keywords": [
"transform",
"markdown-magic",
"automation",
"README",
"badges"
],
"author": "Ion Gireada",
"license": "MIT",
"devDependencies": {
"markdown-magic": "^3.7.0",
"@eslint/js": "^9.37.0",
"@eslint/markdown": "^7.4.0",
"cross-spawn": "7.0.6",
"eslint": "^9.37.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-yaml": "^1.1.3",
"jest": "^30.2.0",
"jsonc-eslint-parser": "^2.4.1",
"markdown-eslint-parser": "^1.2.1",
"markdown-magic-scripts": "^1.3.0",
"prettier": "^3.6.2",
"yaml-eslint-parser": "^1.3.0"
},
"dependencies": {
"fs": "^0.0.1-security",
"path": "^0.12.7"
}
}