forked from TypedDevs/bashunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 754 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "bashunit-docs",
"version": "0.0.0",
"description": "Docs for bashunit a simple testing library for bash scripts",
"main": "index.js",
"repository": "git@github.com:TypedDevs/bashunit.git",
"author": "Jose Maria Valera Reales <chema@typeddevs.com> Emmanuel Valverde Ramos <manu@typeddevs.com> Antonio Gonzalez Gea <antonio@typeddevs.com> Fabrizio Fasanando Sotelo <fabrizio@typeddevs.com>",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"vanilla-tilt": "^1.8.1"
},
"devDependencies": {
"vitepress": "^1.0.0-rc.12",
"vue": "^3.3.4"
}
}