This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.39 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@twilio-labs/plugin-signal2021",
"description": "Developer Mode for SIGNAL 2021",
"version": "1.0.3",
"author": "Twilio @twilio-labs",
"bugs": "https://github.com/twilio-labs/plugin-signal2021/issues",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@apollo/client": "^3.1.3",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.3",
"@twilio-labs/serverless-api": "^4.0.1",
"@twilio/cli-core": "^5.30.0",
"@types/degit": "^2.8.0",
"@types/mkdirp": "^1.0.1",
"@types/pino": "^6.3.2",
"@types/semver": "^7.3.4",
"@xstate/react": "^0.8.1",
"cfonts": "^2.8.6",
"chalk": "^2.4.2",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.0",
"configure-env": "^2.0.0-0",
"create-twilio-function": "^3.3.0",
"cross-fetch": "^3.0.6",
"date-fns": "^2.15.0",
"degit": "^2.8.0",
"execa": "^4.0.0",
"express": "^4.17.1",
"figures": "^3.2.0",
"got": "^11.5.2",
"graphql": "^15.3.0",
"ink": "^3.0.3",
"ink-big-text": "^1.2.0",
"ink-divider": "^2.0.1",
"ink-link": "^2.0.0",
"ink-spinner": "^4.0.1",
"ink-text-input": "^4.0.1",
"ink-use-stdout-dimensions": "^1.0.5",
"is-ci": "^2.0.0",
"is-wsl": "^2.2.0",
"log-symbols": "^3.0.0",
"mkdirp": "^1.0.4",
"ms": "^2.1.2",
"node-env-run": "^4.0.1",
"open": "^7.2.1",
"pino": "^6.6.1",
"pkg-install": "^1.0.0",
"react": "^16.13.1",
"semver": "^7.3.2",
"subscriptions-transport-ws": "^0.9.18",
"terminal-image": "^1.2.1",
"twilio-sync": "^2.0.1",
"type-fest": "^0.16.0",
"use-effect-reducer": "^0.6.1",
"uuid": "^8.3.0",
"xstate": "^4.13.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"@twilio/cli-test": "^2.0.2",
"@types/jest": "^26.0.13",
"@types/ms": "^0.7.31",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-oclif": "^1.5.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.4",
"globby": "^8.0.2",
"ink-testing-library": "^2.0.1",
"jest": "^26.4.2",
"nyc": "^14.1.1",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/yarn.lock",
"/assets"
],
"homepage": "https://www.twilio.com/blog/signal-developer-mode",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"name": "signal2021",
"commands": "./dist/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"signal2021": {
"description": "Enable SIGNAL Developer Mode"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/plugin-signal2021.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint --ignore-path .gitignore .",
"prepack": "npm run build && oclif-dev manifest && oclif-dev readme",
"pretest": "tsc --noEmit",
"test": "jest",
"posttest": "npm run lint && npm audit",
"version": "oclif-dev readme && git add README.md",
"demo": "nodenv demo.js -f"
}
}