forked from containerbase/base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "containerbase",
"version": "0.0.0-semantic-release",
"repository": "https://github.com/containerbase/base.git",
"author": "Rhys Arkins <rhys@arkins.net>",
"contributors": [
"Michael Kriese <michael.kriese@visualon.de>"
],
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=18.12.0",
"yarn": "^3.2.0"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@types/node": "18.14.0",
"@types/shelljs": "0.8.11",
"bats": "1.9.0",
"bats-assert": "2.0.0",
"bats-support": "0.3.0",
"commander": "10.0.0",
"conventional-changelog-conventionalcommits": "5.0.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"semantic-release": "20.1.0",
"shelljs": "0.8.5"
},
"scripts": {
"test:bats": "node_modules/bats/bin/bats --timing --verbose-run test/bash/ test/bash/v2 test/bash/tools",
"bats": "node_modules/bats/bin/bats --timing --verbose-run",
"build": "release:prepare",
"lint": "prettier -c -u \"**/*.*\"",
"lint-fix": "prettier -w -u \"**/*.*\"",
"postinstall": "husky install",
"prepare:proxy": "node tools/prepare-proxy.js",
"release:prepare": "node tools/prepare-release.js",
"release:publish": "node tools/publish-release.js"
},
"packageManager": "yarn@3.4.1"
}