forked from twilio-labs/plugin-flex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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
{
"name": "@twilio-labs/plugin-flex",
"version": "0.1.8",
"description": "Create, develop and deploy Flex plugins using the Twilio CLI",
"keywords": [
"oclif-plugin"
],
"homepage": "https://github.com/twilio-labs/plugin-flex",
"bugs": "https://github.com/twilio-labs/plugin-flex/issues",
"repository": {
"type": "git",
"url": "https://github.com/twilio-labs/plugin-flex.git"
},
"license": "MIT",
"author": "Twilio @twilio",
"files": [
"/oclif.manifest.json",
"/src",
"/package-lock.json",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint --ext .js src/",
"lint:fix": "npm run lint -- --fix",
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint --ignore-path .gitignore . && npm audit",
"version": "oclif-dev readme && git add README.md"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@twilio/cli-core": "5.15.1",
"clear": "^0.1.0",
"create-flex-plugin": "^3.14.5",
"flex-plugin-scripts": "^3.14.5"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@twilio/cli-test": "^2.1.1",
"eslint": "^7.17.0",
"eslint-config-twilio": "^1.31.0",
"globby": "^11.0.2",
"husky": "^4.3.7",
"keytar": "^7.3.0"
},
"engines": {
"node": ">=8.0.0"
},
"oclif": {
"name": "flex",
"commands": "./src/commands",
"bin": "twilio",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"flex": {
"description": "Create, develop and deploy Flex plugins using the Twilio CLI"
}
}
}
}