-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.07 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
{
"name": "bashunit",
"version": "0.35.0",
"checksum": "bfe9f69bda77034234a38f26182cc34e1f7648d846dab57a513a14cf91977544",
"description": "A simple testing library for bash scripts.",
"homepage": "https://bashunit.typeddevs.com",
"repository": {
"type": "git",
"url": "git+https://github.com/TypedDevs/bashunit.git"
},
"bugs": {
"url": "https://github.com/TypedDevs/bashunit/issues"
},
"author": "TypedDevs <team@typeddevs.com>",
"license": "MIT",
"type": "module",
"bin": {
"bashunit": "./bin/bashunit"
},
"files": [
"bin/bashunit",
"LICENSE",
"README.md"
],
"os": [
"darwin",
"linux"
],
"keywords": [
"bash",
"shell",
"testing",
"test",
"unit-testing",
"bashunit",
"tdd",
"assertions"
],
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"chart.js": "^4.4.9",
"vanilla-tilt": "^1.8.1"
},
"devDependencies": {
"vitepress": "^1.6.3",
"vue": "^3.5.16"
}
}