-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 881 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 881 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
{
"name": "@berrymore/pro-cli",
"version": "0.1.0",
"description": "CLI for developers",
"license": "MIT",
"engines": {
"node": "^18.18"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "npx tsc"
},
"bin": {
"pro": "bin/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/dockerode": "^3.3.26",
"@types/node": "^20.11.30",
"@types/nunjucks": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^7.3",
"@typescript-eslint/parser": "^7.3",
"eslint": "^8.57",
"eslint-config-airbnb-base": "^15.0",
"eslint-config-airbnb-typescript": "^18.0",
"typescript": "^5.4"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"dockerode": "^4.0.2",
"nunjucks": "^3.2.4",
"simple-git": "^3.23.0",
"yaml": "^2.4.1"
}
}