-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1016 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1016 Bytes
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": "@onboardbase/kit",
"version": "1.0.14",
"description": "**Onboardbase Kit** (startkit) is a CLI tool for generating boilerplates with onboardbase preconfigured in them as a SecretOps infrastucture.",
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Onboardbase/startkit.git"
},
"keywords": [
"onboardbase",
"secops",
"envs",
"secrets",
"environments"
],
"author": "Olusola Samuel",
"license": "ISC",
"bugs": {
"url": "https://github.com/Onboardbase/startkit/issues"
},
"homepage": "https://github.com/Onboardbase/startkit#readme",
"devDependencies": {},
"dependencies": {
"node-fetch": "^3.1.0",
"tar": "^6.1.11"
},
"scripts": {
"postinstall": "node ./npm-install/postinstall.js"
},
"files": [
"npm-install",
"README.md"
],
"bin": {
"startkit": "bin/startkit.js"
}
}