-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 940 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 940 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
{
"name": "@owlebot/cli",
"version": "0.10.0",
"description": "Owlebot CLI.",
"author": "Khaaz <khaaz.dev@gmail.com>, Xerstom <xerstomdev@outlook.fr>",
"link": "https://github.com/owlebot/cli",
"main": "./src/index.js",
"type": "commonjs",
"license": "MIT",
"engines": {
"node": ">=20.9.0"
},
"bin": {
"deploy": "./bin/deploy.sh",
"docker-build": "./bin/docker-build.sh",
"docker-push": "./bin/docker-push.sh",
"launch": "./bin/init-local.sh",
"secret-pull": "./bin/secret-pull.sh"
},
"dependencies": {
"dotenv": "^16.0.2"
},
"devDependencies": {
"@owlebot/eslint-config": "^1.0.0",
"eslint": "^8.23.0"
},
"scripts": {
"lint": "eslint src/**/*.js",
"test": "yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owlebot/cli.git"
},
"bugs": {
"url": "https://github.com/owlebot/cli/issues"
},
"homepage": "https://github.com/owlebot/cli#readme",
"keywords": []
}