forked from RocketChat/Rocket.Chat.Apps-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.93 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@rocket.chat/apps-cli",
"description": "The CLI tool for helping with Rocket.Chat Apps.",
"version": "1.3.2",
"author": "Rocket.Chat <support@rocket.chat>",
"preferGlobal": true,
"bin": {
"rc-apps": "./bin/run"
},
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat.Apps-cli/issues"
},
"dependencies": {
"@oclif/command": "^1.4.32",
"@oclif/config": "^1.6.27",
"@oclif/plugin-help": "^2.0.5",
"@oclif/plugin-not-found": "^1.0.9",
"@rocket.chat/apps-engine": "^1.3.2",
"chalk": "^2.4.1",
"cli-ux": "^4.6.2",
"figures": "^2.0.0",
"form-data": "^2.3.2",
"fs-extra": "^6.0.1",
"fuzzy": "^0.1.3",
"glob": "^7.1.2",
"indent-string": "^3.2.0",
"inquirer": "^6.1.0",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"node-fetch": "^2.1.2",
"pascal-case": "^2.0.1",
"pascalcase": "^0.1.1",
"semver": "^5.5.0",
"tslib": "^1.9.2",
"tv4": "^1.3.0",
"typescript": "^2.9.2",
"uuid": "^3.2.1",
"yazl": "^2.4.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.13.30",
"@oclif/test": "^1.0.9",
"@oclif/tslint": "^1.1.2",
"@types/chai": "^4.1.3",
"@types/figures": "^2.0.0",
"@types/form-data": "^2.2.1",
"@types/fs-extra": "^5.0.3",
"@types/glob": "^5.0.35",
"@types/indent-string": "^3.0.0",
"@types/inquirer": "0.0.42",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"@types/node-fetch": "^2.1.1",
"@types/semver": "^5.5.0",
"@types/tv4": "^1.2.29",
"@types/uuid": "^3.4.3",
"@types/yazl": "^2.4.0",
"chai": "^4.1.2",
"globby": "^8.0.1",
"http-server": "^0.11.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"ts-node": "^6.1.0",
"tslint": "^5.9.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/RocketChat/Rocket.Chat.Apps-cli",
"keywords": [
"oclif",
"rocket.chat",
"apps"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "rc-apps",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"nyc": {
"reporter": [
"text",
"json",
"html"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.Apps-cli.git"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"prepare": "rm -rf lib && tsc",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"lint": "tslint --project tsconfig.json",
"view-coverage": "npm run test && http-server coverage -p 9083 -c-1"
},
"types": "lib/index.d.ts",
"pre-commit": [
"lint",
"test"
]
}