forked from twilio/twilio-cli-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "@twilio/cli-core",
"version": "6.0.0",
"description": "Core functionality for the twilio-cli.",
"keywords": [
"twilio"
],
"homepage": "https://github.com/twilio/twilio-cli-core",
"bugs": "https://github.com/twilio/twilio-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/ravali-rimmalapudi/twilio-cli-core.git"
},
"license": "MIT",
"author": "Twilio @twilio",
"main": "src/index.js",
"files": [
"/bin",
"/src",
"/.github/scripts/update-release.js",
"/.github/scripts/trigger-workflow.js"
],
"resolutions": {
"ansi-regex": "5.0.1"
},
"scripts": {
"lint": "eslint --ext js --ext jsx src/ test/",
"lint:fix": "npm run lint -- --fix",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"posttest": "eslint --ignore-path .gitignore .",
"preinstall": "npx npm-force-resolutions"
},
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/github": "^2.2.0",
"@oclif/command": "^1.7.0",
"@oclif/config": "^1.16.0",
"@oclif/errors": "^1.3.3",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-plugins": "^1.8.2",
"@octokit/rest": "^18.10.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"columnify": "^1.5.4",
"fs-extra": "^9.0.1",
"https-proxy-agent": "^5.0.0",
"inquirer": "^7.3.0",
"qs": "^6.9.4",
"semver": "^7.3.2",
"tsv": "^0.2.0",
"twilio": "^3.54.2"
},
"devDependencies": {
"@oclif/test": "^1.2.6",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@twilio/cli-test": "^2.1.0",
"chai": "^4.2.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.5.0",
"eslint-config-twilio": "~1.31.0",
"eslint-config-twilio-mocha": "~1.31.0",
"mocha": "^8.3.2",
"mock-fs": "^4.14.0",
"nock": "^13.0.2",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"tmp": "^0.2.1"
},
"optionalDependencies": {
"keytar": "^7.6.0"
},
"engines": {
"node": ">=10.12.0"
}
}