-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 830 Bytes
/
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
{
"name": "gitlab-pipeline-to-md",
"version": "1.0.1",
"description": "Converts GitLab pipeline YAML to Markdown",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:Pixselve/gitlab-pipeline-to-md.git",
"license": "MIT",
"scripts": {
"start:dev": "ts-node src/index.ts -i ./exemples/6.yml -o ./exemples/6.md",
"build": "tsc",
"start": "node ./lib/index.js -i ./exemples/codespell.yml -o ./exemples/codespell.md"
},
"bin": {
"gitlab-pipeline-to-md": "./lib/index.js"
},
"files": [
"lib/**/*"
],
"dependencies": {
"js-yaml": "^4.1.0",
"yaml": "^2.1.3",
"zod": "^3.19.1",
"commander": "^8.3.0"
},
"devDependencies": {
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"@types/js-yaml": "^4.0.5"
}
}