-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
98 lines (98 loc) · 2.37 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
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
{
"name": "@twilio-labs/plugin-rtc",
"version": "0.8.5",
"description": "A Twilio-CLI plugin for real-time communication apps",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/twilio-labs/plugin-rtc",
"scripts": {
"test": "TZ=utc jest -i",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"lint": "eslint .",
"posttest": "npm run lint"
},
"author": "Twilio",
"license": "Apache-2.0",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/plugin-help": "^5.1.11",
"@twilio-labs/serverless-api": "^4.0.3",
"@twilio/cli-core": "^6.7.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nanoid": "^3.3.4"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/jest": "^25.1.3",
"chai": "^4.2.0",
"husky": "^4.3.7",
"eslint": "^7.16.0",
"jest": "^26.0.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"superagent": "^5.2.2",
"twilio": "^3.80.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"jest": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"/oclif.manifest.json",
"/src",
"/package-lock.json"
],
"oclif": {
"name": "rtc",
"commands": "./src/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"rtc": {
"description": "A plugin which showcases real-time communication applications powered by Twilio"
},
"rtc:apps": {
"description": "Commands related to Programmable Voice and Video apps"
},
"rtc:apps:video": {
"description": "Commands related to Programmable Video apps"
},
"rtc:apps:video:view": {
"description": "View a deployed Programmable Video app"
},
"rtc:apps:video:deploy": {
"description": "Deploy a Programmable Video app"
},
"rtc:apps:video:delete": {
"description": "Delete a Programmable Video app"
}
}
}
}