-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
46
47
48
49
50
51
52
{
"name": "banda-cli",
"version": "1.0.3",
"description": "A CLI to help with all your Banda needs",
"main": "build/cli.js",
"types": "build/cli.d.ts",
"bin": {
"@kwburnett/banda": "bin/banda",
"banda": "bin/banda"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js"
},
"keywords": [
"cli",
"deploy"
],
"author": "[email protected]",
"license": "ISC",
"files": [
"bin",
"build"
],
"dependencies": {
"arg": "^4.1.3",
"chalk": "^4.1.0",
"esm": "^3.2.25",
"inquirer": "^7.3.2",
"run-git-command": "^1.2.3",
"yargs": "^15.4.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.23",
"@types/yargs": "^15.0.5",
"babel-jest": "^26.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"typescript": "^3.9.6"
}
}