-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "@twilio/cli-core",
"version": "7.26.5",
"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/twilio/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"
],
"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 ."
},
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/github": "^5.0.3",
"@oclif/plugin-help": "^3.2.2",
"@oclif/plugin-plugins": "^2.1.0",
"@octokit/rest": "^19.0.3",
"axios": "^1.7.4",
"chalk": "^4.1.2",
"columnify": "^1.5.4",
"fs-extra": "^9.0.1",
"https-proxy-agent": "^5.0.0",
"inquirer": "^8.0.0",
"qs": "^6.9.4",
"semver": "^7.3.2",
"tsv": "^0.2.0",
"twilio": "^5.3.0",
"@oclif/core": "^1.16.0"
},
"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": "^8.20.0",
"eslint-config-twilio": "~2.0.0",
"eslint-config-twilio-mocha": "~2.0.0",
"mocha": "^10.0.0",
"mock-fs": "^4.14.0",
"nock": "^13.0.2",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"tmp": "^0.2.1"
},
"engines": {
"node": ">=14.0.0"
}
}