-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.04 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@nimbella/commander-cli",
"version": "1.1.1",
"description": "Commander CLI is a Nimbella Commander development tool that allows you to create, run & publish your serverless functions as commands that can run in Slack, Microsoft Teams, and Mattermost.",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"prepare": "oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md",
"lint": "eslint \"**/*.js\" --fix --ignore-pattern node_modules/",
"prelint": "prettier --write \"**/*.{js,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nimbella/commander-cli.git"
},
"keywords": [
"commander",
"nimbella",
"serverless",
"cli"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nimbella/commander-cli/issues"
},
"homepage": "https://github.com/nimbella/commander-cli#readme",
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^3.0.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "4.2.3",
"prettier": "^2.0.3",
"rimraf": "^3.0.2"
},
"dependencies": {
"@nimbella/nimbella-deployer": "^2.0.2",
"archiver": "^4.0.1",
"axios": "^0.21.1",
"chalk": "^4.0.0",
"conf": "^6.2.4",
"execa": "^4.0.2",
"figlet": "^1.3.0",
"get-port": "^5.1.1",
"globby": "^11.0.0",
"inquirer": "^7.1.0",
"inquirer-command-prompt": "0.0.27",
"js-yaml": "^3.13.1",
"listr": "^0.14.3",
"marked": "^2.0.3",
"marked-terminal": "^4.0.0",
"mkdirp": "^1.0.4",
"open": "^7.0.3",
"shelljs": "^0.8.3",
"terminal-link": "^2.1.1",
"yargs-parser": "^18.1.3"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"oclif": {
"commands": "./src/commander",
"bin": "commander"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}