forked from twilio/twilio-cli-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "@twilio/cli-core",
"version": "5.31.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/LakshmiRavali/twilio-cli-core.git"
},
"license": "MIT",
"author": "Twilio @twilio",
"private": true,
"main": "src/index.js",
"files": [
"/bin",
"/src"
],
"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 . && npm audit --audit-level=moderate"
},
"dependencies": {
"@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",
"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/git": "^9.0.1",
"@twilio/cli-test": "^2.1.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-twilio": "~1.31.0",
"eslint-config-twilio-mocha": "~1.31.0",
"mocha": "^8.3.2",
"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"
}
}