-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "dvbx",
"description": "Developer tool for Docker containerized local environments",
"version": "1.2.9",
"main": "./dist/index.js",
"bin": {
"dvbx": "./dist/index.js"
},
"engines": {
"node": ">=14.0.0"
},
"maintainers": [
{
"name": "Kent Safranski",
"email": "ksafranski@gmail.com"
}
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ksafranski/dvbx.git"
},
"homepage": "https://github.com/ksafranski/dvbx",
"scripts": {
"test": "node --import tsx --test ./tests/*.spec.ts",
"test:watch": "node --import tsx --test --watch ./tests/*.spec.ts",
"test:coverage": "node --import tsx --test --experimental-test-coverage --test-coverage-exclude=\"**/tests/**\" ./tests/*.spec.ts",
"build": "tsc -p . --outDir dist"
},
"dependencies": {
"chalk": "4",
"js-yaml": "^4.1.0",
"ora": "5.4.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "22",
"ts-node": "^10.4.0",
"tsx": "^4.16.3",
"typescript": "^4.4.4"
}
}