-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "@twilio-labs/plugin-watch",
"description": "watch live debug events, calls, and messages generated during your Twilio use",
"version": "4.0.0",
"author": "Twilio @twilio",
"bugs": "https://github.com/twilio-labs/plugin-watch/issues",
"main": "./src/index.js",
"dependencies": {
"@oclif/core": "^1.15.0",
"@twilio/cli-core": "^7.0.0"
},
"devDependencies": {
"@oclif/test": "^1.2.5",
"@twilio/cli-test": "^2.0.2",
"chai": "^4.2.0",
"eslint": "^8.8.0",
"eslint-config-oclif": "^3.1.0",
"globby": "^10.0.1",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"rimraf": "^2.6.3",
"oclif": "^3"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/yarn.lock"
],
"homepage": "https://github.com/twilio-labs/plugin-watch",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"name": "watch",
"commands": "./src/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/plugin-watch.git"
},
"scripts": {
"postpack": "rimraf oclif.manifest.json npm-shrinkwrap.json",
"posttest": "eslint --ignore-path .gitignore . && npm audit",
"prepack": "oclif manifest && git checkout -- package-lock.json",
"test": "nyc --check-coverage --lines 90 --reporter=html --reporter=text mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif readme && echo 'Fix the README.md paths and check it in.'"
},
"publishConfig": {
"access": "public"
}
}